Re-focus the input bar after nick completion button is pressed

deploy
Alice Jenkinson 8 years ago
parent 64e801ef65
commit 8989695af6
  1. 5
      js/inputbar.js

@ -505,6 +505,11 @@ weechat.directive('inputBar', function() {
$scope.handleCompleteNickButton = function($event) {
$event.preventDefault();
$scope.completeNick();
setTimeout(function() {
$scope.getInputNode().focus();
}, 0);
return true;
};
}]

Loading…
Cancel
Save