Skip to content

Commit ce0c72e

Browse files
committed
Fixed: Scrolling not working on mobile devices. #132
1 parent eacc970 commit ce0c72e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ Slideout.prototype._initTouchEvents = function() {
176176
* Prevents touchmove event if slideout is moving
177177
*/
178178
this._preventMove = function(eve) {
179-
if (self._moved || self._opened) {
179+
if (self._moved) {
180180
eve.preventDefault();
181181
}
182182
};

0 commit comments

Comments
 (0)