Created
October 15, 2015 13:15
-
-
Save noherczeg/301d7adb665b9c5b1b6f to your computer and use it in GitHub Desktop.
angular post render hook
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
| MyCtrl.prototype.printReady = function(){ | |
| var vm = this; | |
| this.$timeout(function(){ | |
| vm.ready = true; // ready might toggle spinners, loading screens, or whatever | |
| }, 0); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment