Only enable toggle for sidebar in mobile mode

remotes/origin/ldap_group_count
Vincent Petry 13 years ago
parent ea8705bac8
commit 872006da03
  1. 7
      core/js/js.js

@ -979,7 +979,12 @@ function initCore() {
});
// toggle the navigation on mobile
OC.registerMenu($('#header #owncloud'), $('#navigation'));
if (window.matchMedia) {
var mq = window.matchMedia('(max-width: 600px)');
if (mq && mq.matches) {
OC.registerMenu($('#header #owncloud'), $('#navigation'));
}
}
}
$(document).ready(initCore);

Loading…
Cancel
Save