Skip to content

Instantly share code, notes, and snippets.

@antonsamper
Created November 18, 2013 18:10
Show Gist options
  • Save antonsamper/7532499 to your computer and use it in GitHub Desktop.
Save antonsamper/7532499 to your computer and use it in GitHub Desktop.
AngularJS $resource not caching
myApp.factory('myData', function ($resource) {
return $resource('http://example.com/api/events', {}, {
'options': {
'cache': true
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment