Skip to content

Commit

Permalink
Fixed: Scrolling not working on mobile devices. #132
Browse files Browse the repository at this point in the history
  • Loading branch information
pazguille committed Nov 3, 2015
1 parent eacc970 commit ce0c72e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ Slideout.prototype._initTouchEvents = function() {
* Prevents touchmove event if slideout is moving
*/
this._preventMove = function(eve) {
if (self._moved || self._opened) {
if (self._moved) {
eve.preventDefault();
}
};
Expand Down

0 comments on commit ce0c72e

Please sign in to comment.