MediaWiki:Gadget-UTCLiveClock.js: Difference between revisions

Content deleted Content added
I am reliably informed by ShakataGaNai that this is a good change.
Amalthea (talk | contribs)
Change styling to straight CSS, and style the anchor instead so that it works in both monobook and vector.
Line 1:
function liveClock()
{
appendCSS( "body #utcdate a { font-weight:bolder; font-size:120%; }" );
 
if (typeof(UTCLiveClockConfig)=='undefined') UTCLiveClockConfig = {};
var portletId = UTCLiveClockConfig.portletId || 'p-personal';
var nextNode = UTCLiveClockConfig.nextNodeId ? document.getElementById(UTCLiveClockConfig.nextNodeId) : undefined;
liveClock.node = addPortletLink( portletId, wgServer + wgScriptPath + '/index.php?title=' + encodeURIComponent(wgPageName) + '&action=purge', '', 'utcdate', undefined, undefined, nextNode );
if( !liveClock.node ) return;
 
if (skin !== "vector") { //Looks bad on vector
liveClock.node.style.fontSize = 'larger';
}
liveClock.node.style.fontWeight = 'bolder';
showTime();
}
addOnloadHook(liveClock)
 
function showTime()
{
 
var dateNode = liveClock.node;
if( !dateNode ) {return;
return;
}
var now = new Date();
var hh = now.getUTCHours();
Line 28 ⟶ 25:
var time = ( hh < 10 ? '0' + hh : hh ) + ':' + ( mm < 10 ? '0' + mm : mm ) + ':' + ( ss < 10 ? '0' + ss : ss );
dateNode.firstChild.replaceChild( document.createTextNode( time ), dateNode.firstChild.firstChild );
 
window.setTimeout(showTime, 1000);
}