Disable swiping on desktop

l-merge-prefix
Lorenz Hübschle-Schneider 12 years ago
parent 5938bbb436
commit 17cc3c9088
  1. 6
      js/glowingbear.js

@ -670,8 +670,10 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
} }
// Open and close panels while on mobile devices through swiping // Open and close panels while on mobile devices through swiping
$scope.swipeSidebar = function() { $scope.swipeSidebar = function() {
$scope.showSidebar = !$scope.showSidebar; if (document.body.clientWidth < mobile_cutoff) {
$scope.showSidebar = !$scope.showSidebar;
}
}; };
$scope.openNick = function() { $scope.openNick = function() {

Loading…
Cancel
Save