Skip to content

Instantly share code, notes, and snippets.

@toddbranch
Created September 28, 2015 16:49
Show Gist options
  • Select an option

  • Save toddbranch/5c91c9c9fbf9f5d71c1f to your computer and use it in GitHub Desktop.

Select an option

Save toddbranch/5c91c9c9fbf9f5d71c1f to your computer and use it in GitHub Desktop.
Angular Caching
// trigger a digest manually
$scope.$apply(function() {
contactsService
.getCommon('todd@conspire.com')
.then(success, failure);
});
// zero-delay $timeout
$timeout(function() {
contactsService
.getCommon('todd@conspire.com')
.then(success, failure);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment