MediaWiki:Gadget-UTCLiveClock.js: Difference between revisions

Content deleted Content added
URL-encoding
Amalthea (talk | contribs)
Allow configuring where the clock goes
Line 1:
function liveClock()
{
if (typeof(UTCLiveClockConfig)=='undefined') UTCLiveClockConfig = {};
 
var portletId = UTCLiveClockConfig.portletId || 'p-personal';
liveClock.node = addPortletLink( 'p-personal', wgServer + wgScriptPath + '/index.php?title=' + encodeURIComponent(wgPageName) + '&action=purge', '', 'utcdate' );
var nextNode = UTCLiveClockConfig.nextNodeId ? document.getElementById(UTCLiveClockConfig.nextNodeId) : undefined;
liveClock.node = addPortletLink( 'p-personal'portletId, wgServer + wgScriptPath + '/index.php?title=' + encodeURIComponent(wgPageName) + '&action=purge', '', 'utcdate', undefined, undefined, nextNode );
liveClock.node.style.fontSize = 'larger';
liveClock.node.style.fontWeight = 'bolder';
 
showTime();
}
addOnloadHook(liveClock)
 
function showTime()
{
 
var dateNode = liveClock.node;
if( !dateNode ) {
Line 23 ⟶ 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);
}