code-snippets
code-snippets copied to clipboard
Uncaught TypeError: Cannot read property 'invoke' of undefined
This code snippet wasn't working with the argument document, but it worked with document.body.
https://github.com/bahmutov/code-snippets/blob/master/ng-idle-apply-timing.js
I face the same problem. I use angular 1.3.
This code snippet wasn't working with the argument
document, but it worked withdocument.body. https://github.com/bahmutov/code-snippets/blob/master/ng-idle-apply-timing.js
I face the same problem. I use angular 1.3.
It doesn't work, because you should specify your ng-app element instead of document.body
Just change this line: angular.element(document.body).injector().invoke(timeApply);