|
|
|
@ -909,7 +909,7 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout', |
|
|
|
|
document.getElementById('content').setAttribute('sidebar-state', 'visible'); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
$scope.hideSidebar = function() { |
|
|
|
|
$rootScope.hideSidebar = function() { |
|
|
|
|
if ($rootScope.isMobileUi()) { |
|
|
|
|
document.getElementById('sidebar').setAttribute('data-state', 'hidden'); |
|
|
|
|
document.getElementById('content').setAttribute('sidebar-state', 'hidden'); |
|
|
|
@ -1394,6 +1394,10 @@ weechat.directive('inputBar', function() { |
|
|
|
|
return document.querySelector('textarea#' + $scope.inputId); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
$scope.hideSidebar = function() { |
|
|
|
|
$rootScope.hideSidebar(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
$scope.completeNick = function() { |
|
|
|
|
// input DOM node
|
|
|
|
|
var inputNode = $scope.getInputNode(); |
|
|
|
|