Content deleted Content added
Technical 13 (talk | contribs) m Debugging... |
Technical 13 (talk | contribs) m Debugging... |
||
Line 19:
/* Refresh my WatchList page when viewing every minute */
if (document.___location.href == "http://en.wikipedia.org/wiki/Special:Watchlist") {
setTimeout(function(){___location = ''},60000);
var timeNow = new Date();
var minNow = timeNow.getMinutes();
Line 37:
timePost.setHours(postHour);
timePost.setMinutes(postMin);
var SHOE = timePost + " =?= " timeNow;
if (timePost >= timeNow) {$('td.mw-enhanced-rc').css({fontWeight: 'bold', fontSize: '12pt'});}*/▼
$('td[class="mw-enhanced-rc"]').each(function() {this.innerHTML = this.innerHTML.replace(' ', SHOE);});
▲ /*if (timePost >= timeNow) {$('td.mw-enhanced-rc').css({fontWeight: 'bold', fontSize: '12pt'});}*/
}
|