Browse Source

thread-watcher.js: fix background and border

pull/40/head
Pashe 10 years ago
committed by czaks
parent
commit
01446aad12
  1. 6
      js/thread-watcher.js

6
js/thread-watcher.js

@ -40,6 +40,7 @@ watchlist.render = function(reset) {
$('#watchlist').append(threads.join(''));
} else {
//If the watchlist has not yet been rendered, create it.
var menuStyle = getComputedStyle($('.boardlist')[0]);
$('form[name="post"]').before(
$('<div id="watchlist">'+
'<div class="watchlist-controls">'+
@ -47,10 +48,7 @@ watchlist.render = function(reset) {
'<span><a id="clearGhosts">[Clear Ghosts]</a></span>'+
'</div>'+
threads.join('')+
'</div>').css({
background: $('.reply').css('background'),
borderColor : $('.reply').css('border-color')
}));
'</div>').css("background-color", menuStyle.backgroundColor).css("border", menuStyle.borderBottomWidth+" "+menuStyle.borderBottomStyle+" "+menuStyle.borderBottomColor));
}
return this;
};

Loading…
Cancel
Save