Skip to content

Instantly share code, notes, and snippets.

@rodyhaddad
Created August 9, 2013 00:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rodyhaddad/6190061 to your computer and use it in GitHub Desktop.
Save rodyhaddad/6190061 to your computer and use it in GitHub Desktop.
Angular Basic setInterval
app.value("ngBasicInterval", function (fn, delay) {
(function repeat() {
$timeout(fn, delay).then(repeat);
}());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment