Merge pull request #350 from glowing-bear/keep-keyboard-open

Focus input bar after pressing the send button
This commit is contained in:
David Cormier 2014-07-16 16:54:56 -04:00
commit 2a2c7e1281

View file

@ -1314,6 +1314,8 @@ weechat.directive('inputBar', function() {
// Empty the input after it's sent // Empty the input after it's sent
$scope.command = ''; $scope.command = '';
} }
$scope.getInputNode().focus();
}; };
$rootScope.addMention = function(prefix) { $rootScope.addMention = function(prefix) {