Skip to content

Instantly share code, notes, and snippets.

@noherczeg
Created October 15, 2015 13:15
Show Gist options
  • Select an option

  • Save noherczeg/301d7adb665b9c5b1b6f to your computer and use it in GitHub Desktop.

Select an option

Save noherczeg/301d7adb665b9c5b1b6f to your computer and use it in GitHub Desktop.
angular post render hook
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