diff --git a/css/glowingbear.css b/css/glowingbear.css new file mode 100644 index 0000000..941890f --- /dev/null +++ b/css/glowingbear.css @@ -0,0 +1,9 @@ +body { + font-family: monospace; + background-color: black; + color: white; +} + +li.notification { + color: green; +} \ No newline at end of file diff --git a/index.html b/index.html index bda4b63..4e1ff77 100644 --- a/index.html +++ b/index.html @@ -3,6 +3,7 @@
+ diff --git a/js/websockets.js b/js/websockets.js index fd29ad9..d872801 100644 --- a/js/websockets.js +++ b/js/websockets.js @@ -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() {