Guest User

Untitled

a guest
May 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. scope.timeDiff = 0;
  2. var intervalId = $interval(function(){
  3. scope.timeDiff += 1000;
  4. },1000);
  5.  
  6. scope.$on('$destroy',function(){
  7. $interval.clear(intervalId);
  8. });
Add Comment
Please, Sign In to add comment