diff options
author | jbtbnl <jbtbnl@users.noreply.github.com> | 2014-06-10 21:59:55 +0200 |
---|---|---|
committer | jbtbnl <jbtbnl@users.noreply.github.com> | 2014-06-10 21:59:55 +0200 |
commit | 077a542d59ea5c992ebb1b3ac0e6117f6289582c (patch) | |
tree | a5968daad8c5bd543cf0534650132f37a6209f23 | |
parent | ecc41fe0c3375022d2455fd563f91b2691bdd857 (diff) | |
parent | 015c5062e58571468ecbfa70f4316f92b134a00d (diff) | |
download | nextcloud-server-077a542d59ea5c992ebb1b3ac0e6117f6289582c.tar.gz nextcloud-server-077a542d59ea5c992ebb1b3ac0e6117f6289582c.zip |
Merge pull request #8971 from owncloud/sidebar-disablesnapperinielte9
Disable snapper init for IE <= 9
-rw-r--r-- | core/js/js.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/js.js b/core/js/js.js index bc4d135f9a7..1d5219eff12 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -1140,7 +1140,7 @@ function initCore() { setupMainMenu(); // just add snapper for logged in users - if($('#app-navigation').length) { + if($('#app-navigation').length && !$('html').hasClass('lte9')) { // App sidebar on mobile var snapper = new Snap({ |