Welcome to the Lylat Wiki, all about the Star Fox series! If you'd like to help out, please take a look at our community portal.

MediaWiki:Gadget-Gadget-UTCLiveClock.js

From Lylat Wiki, your source on Star Fox information. By Fans, for Fans.
Revision as of 00:50, 24 February 2010 by Tacopill (talk | contribs) (Created page with ' //Gotten from: http://www.mediawiki.org/wiki/MediaWiki:Gadget-UTCLiveClock.js on 2/23/2010 →‎Warning! Global gadget file!: function liveClock(){ liveClock.node = addPortl…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.


//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);

}