This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* AngularJS example directive. | |
* Allows you to modify the page DOM and CSS styles before printing by exexuting the passed expression. | |
* Will force a $digest phase before the print operation. | |
* | |
* Example: <div ng-class="{printed: isPrinted}" on-before-print="printed = true" /> | |
*/ | |
module.directive('onBeforePrint', ['$window', '$rootScope', '$timeout', function onBeforePrint($window, $rootScope, $timeout) { | |
var beforePrintDirty = false; | |
var listeners = []; |