Disable swiping on desktop
This commit is contained in:
parent
5938bbb436
commit
17cc3c9088
1 changed files with 4 additions and 2 deletions
|
@ -670,8 +670,10 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
|
|||
}
|
||||
|
||||
// Open and close panels while on mobile devices through swiping
|
||||
$scope.swipeSidebar = function() {
|
||||
$scope.showSidebar = !$scope.showSidebar;
|
||||
$scope.swipeSidebar = function() {
|
||||
if (document.body.clientWidth < mobile_cutoff) {
|
||||
$scope.showSidebar = !$scope.showSidebar;
|
||||
}
|
||||
};
|
||||
|
||||
$scope.openNick = function() {
|
||||
|
|
Loading…
Reference in a new issue