Skip to content

Commit 18e5c20

Browse files
committed
release v0.9.3
1 parent 222f5f1 commit 18e5c20

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
v0.9.3 - Wed, 08 Oct 2014 14:44:52 GMT
2+
--------------------------------------
3+
4+
-
5+
6+
17
v0.9.2 - Wed, 08 Oct 2014 05:33:30 GMT
28
--------------------------------------
39

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router",
3-
"version": "0.9.2",
3+
"version": "0.9.3",
44
"homepage": "https://github.com/rackt/react-router",
55
"authors": [
66
"Ryan Florence",

dist/react-router.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1691,10 +1691,10 @@ var ScrollContext = {
16911691

16921692
updateScroll: function (path, actionType) {
16931693
var behavior = this.getScrollBehavior();
1694-
var position = this._scrollPositions[path];
16951694

1696-
if (behavior && position)
1697-
behavior.updateScrollPosition(position, actionType);
1695+
if (behavior != null && this._scrollPositions.hasOwnProperty(path)) {
1696+
behavior.updateScrollPosition(this._scrollPositions[path], actionType);
1697+
}
16981698
},
16991699

17001700
/**

dist/react-router.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router",
3-
"version": "0.9.2",
3+
"version": "0.9.3",
44
"description": "A complete routing library for React.js",
55
"main": "./modules/index",
66
"repository": {

0 commit comments

Comments
 (0)