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

Commit

Permalink
2.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
shaungrady committed Jan 23, 2017
1 parent 033fccd commit 6d4af5a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
6 changes: 4 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* angular-http-etag v2.0.14
* angular-http-etag v2.0.15
* Shaun Grady (http://shaungrady.com), 2017
* https://github.com/shaungrady/angular-http-etag
* Module Format: CommonJS
Expand Down Expand Up @@ -736,7 +736,9 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
.config(['$provide', '$httpProvider', function addHttpEtagInterceptor ($provide, $httpProvider) {
__WEBPACK_IMPORTED_MODULE_2__httpDecorator__["a" /* default */].useLegacyPromiseExtensions =
$httpProvider.useLegacyPromiseExtensions ||
function useLegacyPromiseExtensions () { return true }
function useLegacyPromiseExtensions () {
return __WEBPACK_IMPORTED_MODULE_0_angular___default.a.version.major === 1 && __WEBPACK_IMPORTED_MODULE_0_angular___default.a.version.minor < 6
}
$provide.decorator('$http', __WEBPACK_IMPORTED_MODULE_2__httpDecorator__["a" /* default */])
$httpProvider.interceptors.push(__WEBPACK_IMPORTED_MODULE_3__httpInterceptor__["a" /* default */])
}])
Expand Down
2 changes: 1 addition & 1 deletion npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-http-etag",
"version": "2.0.14",
"version": "2.0.15",
"description": "Angular module for easy ETag-based caching of $http responses",
"homepage": "https://github.com/shaungrady/angular-http-etag",
"author": "Shaun Grady (http://shaungrady.com)",
Expand Down
6 changes: 4 additions & 2 deletions release/angular-http-etag.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* angular-http-etag v2.0.14
* angular-http-etag v2.0.15
* Shaun Grady (http://shaungrady.com), 2017
* https://github.com/shaungrady/angular-http-etag
* Module Format: Universal Module Definition
Expand Down Expand Up @@ -1249,7 +1249,9 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
.config(['$provide', '$httpProvider', function addHttpEtagInterceptor ($provide, $httpProvider) {
__WEBPACK_IMPORTED_MODULE_2__httpDecorator__["a" /* default */].useLegacyPromiseExtensions =
$httpProvider.useLegacyPromiseExtensions ||
function useLegacyPromiseExtensions () { return true }
function useLegacyPromiseExtensions () {
return __WEBPACK_IMPORTED_MODULE_0_angular___default.a.version.major === 1 && __WEBPACK_IMPORTED_MODULE_0_angular___default.a.version.minor < 6
}
$provide.decorator('$http', __WEBPACK_IMPORTED_MODULE_2__httpDecorator__["a" /* default */])
$httpProvider.interceptors.push(__WEBPACK_IMPORTED_MODULE_3__httpInterceptor__["a" /* default */])
}])
Expand Down
4 changes: 2 additions & 2 deletions release/angular-http-etag.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion release/angular-http-etag.min.js.map

Large diffs are not rendered by default.

0 comments on commit 6d4af5a

Please sign in to comment.