Skip to content

Commit 1358b07

Browse files
committed
release 0.1.15
1 parent e847cea commit 1358b07

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ng-hyper",
33
"repo": "hypergroup/ng-hyper",
44
"description": "Hyper tools for angular",
5-
"version": "0.1.14",
5+
"version": "0.1.15",
66
"keywords": [],
77
"dependencies": {
88
"camshaft/websafe-base64": "*",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng-hyper",
3-
"version": "0.1.14",
3+
"version": "0.1.15",
44
"description": "Hyper tools for angular",
55
"main": "index.js",
66
"dependencies": {

services/hyper-backend-http.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ pkg.factory('hyperBackend', [
9696
// http://tools.ietf.org/html/draft-nottingham-linked-cache-inv-03#section-3
9797
var invalidates = links.invalidates;
9898
invalidates = typeof invalidates === 'string' ? [invalidates] : invalidates;
99-
angular.forEach(links.invalidates || [], function(href) {
99+
angular.forEach(invalidates || [], function(href) {
100100
emitter.refresh(href);
101101
});
102102
})

0 commit comments

Comments
 (0)