Set the background black

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

9
css/glowingbear.css Normal file
View file

@ -0,0 +1,9 @@
body {
font-family: monospace;
background-color: black;
color: white;
}
li.notification {
color: green;
}

View file

@ -3,6 +3,7 @@
<head>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js" rel="stylesheet" media="screen">
<link href="css/glowingbear.css" rel="stylesheet" media="screen">
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript" src="js/underscore.js"></script>
<script type="text/javascript" src="js/protocol.js"></script>

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() {