Set the background black

This commit is contained in:
David Cormier 2013-10-01 19:39:24 -04:00
commit b409bd5e37
3 changed files with 12 additions and 0 deletions

View file

@ -137,6 +137,7 @@ weechat.factory('pluginManager', ['youtubePlugin', 'urlPlugin', 'imagePlugin', f
}]);
weechat.factory('youtubePlugin', [function() {
var contentForMessage = function(message) {
if (message.indexOf('youtube.com') != -1) {
var index = message.indexOf("?v=");
@ -150,6 +151,7 @@ weechat.factory('youtubePlugin', [function() {
contentForMessage: contentForMessage,
exclusive: true
}
}]);
weechat.factory('urlPlugin', [function() {