--- title: Utils ---

Print

Utility method that fixes window.print() for IE9-11 and Firefox from within an iframe

import { print } from 'availity-angular/lib/core/utils'; app.controller('DemoUtilsController', $scope => { $scope.vm = { onPrint() { print(); } }; });