|
|
|
@ -1,4 +1,4 @@ |
|
|
|
|
var weechat = angular.module('weechat', ['ngRoute', 'localStorage', 'weechatModels', 'plugins', 'ngSanitize', 'ngWebsockets', 'pasvaz.bindonce']); |
|
|
|
|
var weechat = angular.module('weechat', ['ngRoute', 'localStorage', 'weechatModels', 'plugins', 'ngSanitize', 'ngWebsockets', 'pasvaz.bindonce', 'ngTouch']); |
|
|
|
|
|
|
|
|
|
weechat.filter('toArray', function () { |
|
|
|
|
'use strict'; |
|
|
|
@ -619,7 +619,29 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout', |
|
|
|
|
$scope.noembed = true; |
|
|
|
|
$scope.notimestamp = true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Open and close panels while on mobile devices through swiping
|
|
|
|
|
$scope.swipeSidebar = function() {
|
|
|
|
|
if (document.body.clientWidth < 968) { |
|
|
|
|
$('#sidebar').collapse('toggle'); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$scope.openNick = function() { |
|
|
|
|
if (document.body.clientWidth < 968) { |
|
|
|
|
if($scope.nonicklist) {
|
|
|
|
|
$scope.nonicklist = false; |
|
|
|
|
}
|
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
$scope.closeNick = function() { |
|
|
|
|
if (document.body.clientWidth < 968) { |
|
|
|
|
if(!$scope.nonicklist) {
|
|
|
|
|
$scope.nonicklist = true; |
|
|
|
|
}
|
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// Watch model and update show setting when it changes
|
|
|
|
|
$scope.$watch('noembed', function() { |
|
|
|
@ -636,7 +658,7 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout', |
|
|
|
|
// If we are on mobile we need to collapse the menu on sidebar clicks
|
|
|
|
|
// We use 968 px as the cutoff, which should match the value in glowingbear.css
|
|
|
|
|
if (document.body.clientWidth < 968) { |
|
|
|
|
document.querySelector('#sidebar').collapse(); |
|
|
|
|
$('#sidebar').collapse('toggle'); |
|
|
|
|
} |
|
|
|
|
return models.setActiveBuffer(bufferId, key); |
|
|
|
|
}; |
|
|
|
|