Skip to content
This repository has been archived by the owner on Sep 18, 2019. It is now read-only.

2.0.15

Compare
Choose a tag to compare
@shaungrady shaungrady released this 24 Jan 00:01
· 73 commits to master since this release
6d4af5a

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.
  })