MediaWiki:Gadget-UTCLiveClock.js: Difference between revisions
Content deleted Content added
I am reliably informed by ShakataGaNai that this is a good change. |
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 );
showTime();
}
addOnloadHook(liveClock)
function showTime()
{
var dateNode = liveClock.node;
if( !dateNode )
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);
}
|