Set the background black
This commit is contained in:
parent
1a66d18537
commit
b409bd5e37
|
@ -0,0 +1,9 @@
|
||||||
|
body {
|
||||||
|
font-family: monospace;
|
||||||
|
background-color: black;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.notification {
|
||||||
|
color: green;
|
||||||
|
}
|
|
@ -3,6 +3,7 @@
|
||||||
<head>
|
<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/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="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/angular.min.js"></script>
|
||||||
<script type="text/javascript" src="js/underscore.js"></script>
|
<script type="text/javascript" src="js/underscore.js"></script>
|
||||||
<script type="text/javascript" src="js/protocol.js"></script>
|
<script type="text/javascript" src="js/protocol.js"></script>
|
||||||
|
|
|
@ -137,6 +137,7 @@ weechat.factory('pluginManager', ['youtubePlugin', 'urlPlugin', 'imagePlugin', f
|
||||||
}]);
|
}]);
|
||||||
|
|
||||||
weechat.factory('youtubePlugin', [function() {
|
weechat.factory('youtubePlugin', [function() {
|
||||||
|
|
||||||
var contentForMessage = function(message) {
|
var contentForMessage = function(message) {
|
||||||
if (message.indexOf('youtube.com') != -1) {
|
if (message.indexOf('youtube.com') != -1) {
|
||||||
var index = message.indexOf("?v=");
|
var index = message.indexOf("?v=");
|
||||||
|
@ -150,6 +151,7 @@ weechat.factory('youtubePlugin', [function() {
|
||||||
contentForMessage: contentForMessage,
|
contentForMessage: contentForMessage,
|
||||||
exclusive: true
|
exclusive: true
|
||||||
}
|
}
|
||||||
|
|
||||||
}]);
|
}]);
|
||||||
|
|
||||||
weechat.factory('urlPlugin', [function() {
|
weechat.factory('urlPlugin', [function() {
|
||||||
|
|
Loading…
Reference in New Issue