Add method to retrieve inputNode element from directive

This commit is contained in:
David Cormier 2014-02-23 10:48:21 -05:00
parent 335e31fa1f
commit f141095312

View file

@ -995,6 +995,7 @@ weechat.directive('inputBar', function() {
templateUrl: 'directives/input.html',
controller: function($rootScope,
$scope,
$element,
connection,
models) {
@ -1005,6 +1006,13 @@ weechat.directive('inputBar', function() {
});
*/
/*
* Returns the input element
*/
$scope.getInputNode = function() {
return $element.find('input')[0];
};
$scope.completeNick = function() {
// input DOM node
var inputNode = document.getElementById('sendMessage');