Merge pull request #238 from lorenzhs/trailingcomma
remove trailing commas
This commit is contained in:
commit
2000437c3a
|
@ -373,7 +373,7 @@ function($rootScope,
|
||||||
'onopen': onopen,
|
'onopen': onopen,
|
||||||
'onclose': onclose,
|
'onclose': onclose,
|
||||||
'onmessage': onmessage,
|
'onmessage': onmessage,
|
||||||
'onerror': onerror,
|
'onerror': onerror
|
||||||
});
|
});
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -1102,7 +1102,7 @@ weechat.directive('plugin', function() {
|
||||||
templateUrl: 'directives/plugin.html',
|
templateUrl: 'directives/plugin.html',
|
||||||
|
|
||||||
scope: {
|
scope: {
|
||||||
plugin: '=data',
|
plugin: '=data'
|
||||||
},
|
},
|
||||||
|
|
||||||
controller: function($scope) {
|
controller: function($scope) {
|
||||||
|
@ -1144,7 +1144,7 @@ weechat.directive('inputBar', function() {
|
||||||
templateUrl: 'directives/input.html',
|
templateUrl: 'directives/input.html',
|
||||||
|
|
||||||
scope: {
|
scope: {
|
||||||
inputId: '@inputId',
|
inputId: '@inputId'
|
||||||
},
|
},
|
||||||
|
|
||||||
controller: function($rootScope,
|
controller: function($rootScope,
|
||||||
|
|
Loading…
Reference in New Issue