Don't hide the sidebar when "swiping" with the mouse on desktop

rewrite-with-urlplugin
Lorenz Hübschle-Schneider 11 years ago
parent 013cc03380
commit fec3c57da3
  1. 6
      js/glowingbear.js

@ -885,8 +885,10 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
};
$scope.hideSidebar = function() {
document.getElementById('sidebar').setAttribute('data-state', 'hidden');
document.getElementById('content').setAttribute('sidebar-state', 'hidden');
if ($rootScope.isMobileUi()) {
document.getElementById('sidebar').setAttribute('data-state', 'hidden');
document.getElementById('content').setAttribute('sidebar-state', 'hidden');
}
};
$scope.$watch('autoconnect', function() {
if ($scope.autoconnect && !$rootScope.connected) {

Loading…
Cancel
Save