Merge pull request #421 from glowing-bear/double-apply

Prevent triggering ng-focus on input during completion
rewrite-with-urlplugin
David Cormier 11 years ago
commit a9f06ee46b
  1. 6
      js/glowingbear.js

@ -1428,8 +1428,10 @@ weechat.directive('inputBar', function() {
$scope.command = nickComp.text;
// update current caret position
inputNode.focus();
inputNode.setSelectionRange(nickComp.caretPos, nickComp.caretPos);
setTimeout(function() {
inputNode.focus();
inputNode.setSelectionRange(nickComp.caretPos, nickComp.caretPos);
}, 0);
};

Loading…
Cancel
Save