Move plugin to it's own directive

This commit is contained in:
David Cormier 2014-02-06 20:59:50 -05:00
commit 6b12926887
3 changed files with 32 additions and 8 deletions

View file

@ -762,6 +762,20 @@ weechat.config(['$routeProvider',
}
]);
weechat.directive('plugin', function() {
return {
templateUrl: 'directives/plugin.html',
scope: {
data: '=data',
},
}
});
weechat.directive('inputBar', function() {
return {