Skip to content

Commit

Permalink
release v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanflorence committed Oct 8, 2014
1 parent 222f5f1 commit 18e5c20
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v0.9.3 - Wed, 08 Oct 2014 14:44:52 GMT
--------------------------------------

-


v0.9.2 - Wed, 08 Oct 2014 05:33:30 GMT
--------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-router",
"version": "0.9.2",
"version": "0.9.3",
"homepage": "https://github.com/rackt/react-router",
"authors": [
"Ryan Florence",
Expand Down
6 changes: 3 additions & 3 deletions dist/react-router.js
Original file line number Diff line number Diff line change
Expand Up @@ -1691,10 +1691,10 @@ var ScrollContext = {

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

if (behavior && position)
behavior.updateScrollPosition(position, actionType);
if (behavior != null && this._scrollPositions.hasOwnProperty(path)) {
behavior.updateScrollPosition(this._scrollPositions[path], actionType);
}
},

/**
Expand Down
2 changes: 1 addition & 1 deletion dist/react-router.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-router",
"version": "0.9.2",
"version": "0.9.3",
"description": "A complete routing library for React.js",
"main": "./modules/index",
"repository": {
Expand Down

0 comments on commit 18e5c20

Please # to comment.