diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-07-21 17:03:45 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-07 18:36:27 +0200 |
commit | db40682b1fedff7ae1d906d62ebae032a460836d (patch) | |
tree | 144b5fbb6cceb42b66578ac99588ffb22f26075e /core/js/js.js | |
parent | 09ca2e0291e15348348ced5bf7abbae4a5dd4a73 (diff) | |
download | nextcloud-server-db40682b1fedff7ae1d906d62ebae032a460836d.tar.gz nextcloud-server-db40682b1fedff7ae1d906d62ebae032a460836d.zip |
fix mobile scrolling, lower sidebar sensitivity, fix #11193
Diffstat (limited to 'core/js/js.js')
-rw-r--r-- | core/js/js.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/js/js.js b/core/js/js.js index 45c9c90362f..78f44173e76 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -1315,7 +1315,8 @@ function initCore() { var snapper = new Snap({ element: document.getElementById('app-content'), disable: 'right', - maxPosition: 250 + maxPosition: 250, + minDragDistance: 100 }); $('#app-content').prepend('<div id="app-navigation-toggle" class="icon-menu" style="display:none;"></div>'); $('#app-navigation-toggle').click(function(){ |