Skip to content

Commit

Permalink
Merge branch 'master' into grid-support
Browse files Browse the repository at this point in the history
  • Loading branch information
richmeij committed Nov 26, 2016
2 parents c3ae90f + 7339c78 commit 7e251ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
"qs": "^6.2.0",
"raw-loader": "^0.5.1",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-addons-pure-render-mixin": "^15.0.2",
"react-addons-shallow-compare": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/SortableContainer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ export default function SortableContainer(WrappedComponent, config = {withRef: f
}

if (this.autoscrollInterval) {
clearTimeout(this.autoscrollInterval);
clearInterval(this.autoscrollInterval);
this.autoscrollInterval = null;
this.isAutoScrolling = false;
}
Expand Down

1 comment on commit 7e251ec

@ralf-strehle
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

... better use rebase than merge here to avoid merge commits in master ...

Please sign in to comment.