Skip to content

Commit

Permalink
release 0.1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
camshaft committed Oct 20, 2014
1 parent e847cea commit 1358b07
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ng-hyper",
"repo": "hypergroup/ng-hyper",
"description": "Hyper tools for angular",
"version": "0.1.14",
"version": "0.1.15",
"keywords": [],
"dependencies": {
"camshaft/websafe-base64": "*",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-hyper",
"version": "0.1.14",
"version": "0.1.15",
"description": "Hyper tools for angular",
"main": "index.js",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion services/hyper-backend-http.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ pkg.factory('hyperBackend', [
// http://tools.ietf.org/html/draft-nottingham-linked-cache-inv-03#section-3
var invalidates = links.invalidates;
invalidates = typeof invalidates === 'string' ? [invalidates] : invalidates;
angular.forEach(links.invalidates || [], function(href) {
angular.forEach(invalidates || [], function(href) {
emitter.refresh(href);
});
})
Expand Down

0 comments on commit 1358b07

Please sign in to comment.