Skip to content

Commit

Permalink
v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bcomnes committed Apr 17, 2017
1 parent 5dab9b1 commit 3bb9ccb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## 1.0.0 - 2017-04-10
* ...
## 3.0.0 - 2017-04-10
* initial release
4 changes: 1 addition & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ CacheElement.prototype._createProxy = function () {
}
var self = this
proxy.isSameNode = function (el) {
window.newNode = el
window.oldNode = self._element
return self._element.id ? el.id === self._element.id : el.isSameNode(self._element)
return self._element.id ? el.id === self._element.id : el === self._element
}
return proxy
}
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcomnes/cache-component.git"
"url": "git+https://github.com/hypermodules/cache-component.git"
},
"keywords": [
"bel",
Expand All @@ -26,9 +26,9 @@
"author": "Bret Comnes",
"license": "MIT",
"bugs": {
"url": "https://github.com/bcomnes/cache-component/issues"
"url": "https://github.com/hypermodules/cache-component/issues"
},
"homepage": "https://github.com/bcomnes/cache-component#readme",
"homepage": "https://github.com/hypermodules/cache-component#readme",
"dependencies": {
"global": "^4.3.1"
},
Expand Down

0 comments on commit 3bb9ccb

Please sign in to comment.