|
|
|
@ -1320,7 +1320,7 @@ weechat.config(['$routeProvider', |
|
|
|
|
]); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
weechat.directive('plugin', function($rootScope) { |
|
|
|
|
weechat.directive('plugin', ['$rootScope', function($rootScope) { |
|
|
|
|
/* |
|
|
|
|
* Plugin directive |
|
|
|
|
* Shows additional plugin content |
|
|
|
@ -1373,10 +1373,10 @@ weechat.directive('plugin', function($rootScope) { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
}); |
|
|
|
|
}]); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
weechat.directive('inputBar', function() { |
|
|
|
|
weechat.directive('inputBar', ['$rootScope', function() { |
|
|
|
|
|
|
|
|
|
return { |
|
|
|
|
|
|
|
|
@ -1386,7 +1386,8 @@ weechat.directive('inputBar', function() { |
|
|
|
|
inputId: '@inputId' |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
controller: function($rootScope, |
|
|
|
|
controller: ['$rootScope', '$scope', '$log', 'connection', 'models', |
|
|
|
|
function($rootScope, |
|
|
|
|
$scope, |
|
|
|
|
$element, |
|
|
|
|
$log, |
|
|
|
@ -1666,6 +1667,6 @@ weechat.directive('inputBar', function() { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
}] |
|
|
|
|
}; |
|
|
|
|
}); |
|
|
|
|
}]); |
|
|
|
|