Do angular models work with setIntervaL?
Here's an example.. if I have
<p>{{number}}</p>
<button ng-click="testFunc()">TEST</button>
For some reason it updates WITHOUT setInterval, but like this it doesn't:
scope.testFunc = function(){
setInterval(function(){
scope.number--;
},1000);
};
Without setInterval the number will update every single click, but with setInverval it won't update continuously. If I click it every 5 seconds it'll jump a bunch of numbers up (so it's running in the background but the view isn't updating).