parent
09f94d360e
commit
f7aa7a0871
|
@ -1,6 +1,6 @@
|
||||||
<form class="form form-horizontal" id="inputform" ng-submit="sendMessage()">
|
<form class="form form-horizontal" id="inputform" ng-submit="sendMessage()">
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<textarea id="{{inputId}}" class="form-control favorite-font" ng-trim="false" rows="1" autocomplete="off" ng-model="command">
|
<textarea id="{{inputId}}" class="form-control favorite-font" ng-trim="false" rows="1" autocomplete="off" ng-model="command" ng-focus="hideSidebar()">
|
||||||
</textarea>
|
</textarea>
|
||||||
<span class="input-group-btn">
|
<span class="input-group-btn">
|
||||||
<button class="btn btn-default btn-primary">Send</button>
|
<button class="btn btn-default btn-primary">Send</button>
|
||||||
|
|
|
@ -909,7 +909,7 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
|
||||||
document.getElementById('content').setAttribute('sidebar-state', 'visible');
|
document.getElementById('content').setAttribute('sidebar-state', 'visible');
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.hideSidebar = function() {
|
$rootScope.hideSidebar = function() {
|
||||||
if ($rootScope.isMobileUi()) {
|
if ($rootScope.isMobileUi()) {
|
||||||
document.getElementById('sidebar').setAttribute('data-state', 'hidden');
|
document.getElementById('sidebar').setAttribute('data-state', 'hidden');
|
||||||
document.getElementById('content').setAttribute('sidebar-state', 'hidden');
|
document.getElementById('content').setAttribute('sidebar-state', 'hidden');
|
||||||
|
@ -1394,6 +1394,10 @@ weechat.directive('inputBar', function() {
|
||||||
return document.querySelector('textarea#' + $scope.inputId);
|
return document.querySelector('textarea#' + $scope.inputId);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
$scope.hideSidebar = function() {
|
||||||
|
$rootScope.hideSidebar();
|
||||||
|
};
|
||||||
|
|
||||||
$scope.completeNick = function() {
|
$scope.completeNick = function() {
|
||||||
// input DOM node
|
// input DOM node
|
||||||
var inputNode = $scope.getInputNode();
|
var inputNode = $scope.getInputNode();
|
||||||
|
|
Loading…
Reference in New Issue