Site Notice |
---|
We have a limited coverage policy. Please check our coverage page to see which articles are allowed. |
Difference between revisions of "MediaWiki:Gadget-Gadget-UTCLiveClock.js"
Jump to navigation
Jump to search
m (1 revision: importing stuff form ISSBW) |
m (1 revision) |
(No difference)
|
Latest revision as of 17:00, 9 December 2012
//Gotten from: http://www.mediawiki.org/wiki/MediaWiki:Gadget-UTCLiveClock.js on 2/23/2010 /* Warning! Global gadget file! */ function liveClock(){ liveClock.node = addPortletLink( 'p-personal', wgServer + wgScriptPath + '/index.php?title=' + encodeURIComponent(wgPageName) + '&action=purge', '', 'utcdate' ); liveClock.node.style.fontSize = 'larger'; liveClock.node.style.fontWeight = 'bolder'; showTime(); } addOnloadHook(liveClock); function showTime(){ var dateNode = liveClock.node; if( !dateNode ) { return; } var now = new Date(); var hh = now.getUTCHours(); var mm = now.getUTCMinutes(); var ss = now.getUTCSeconds(); 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); }