Skip to content

Instantly share code, notes, and snippets.

View dgreene1's full-sized avatar

Dan Greene dgreene1

View GitHub Profile
@angel-vladov
angel-vladov / onBeforePrint.js
Last active May 10, 2018 12:18
AngularJS 1 on before print directive
/**
* 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 = [];