This repository has been archived by the owner on Sep 18, 2019. It is now read-only.
2.0.15
Fix compatibility with Angular 1.6. Please note the new promise syntax due to the change in 1.6 dropping support for the success
and error
promise shortcut methods.
Example of new syntax:
$http
.get('/my_data.json', {
etagCache: 'persistentCache'
})
.then(function success (response, itemCache) {
// Success
})
.ifCached(function (response, itemCache) {
// Cached. Note new method and arguments.
})