MediaWiki:Gadget-UTCLiveClock.js

Tumatan Wikipidia Banjar, kindai pangatahuan

Catatan: Imbah disimpan, Pian pinanya parlu malincau talih paramban wéb gasan manjanaki paubahan.

  • Firefox/Safari: Tahan Shift wayah manikin Reload, atawa tikin Ctrl-F5 atawa Ctrl-R (⌘-R di Mac)
  • Google Chrome: Tikin Ctrl-Shift-R (⌘-Shift-R di Mac)
  • Internet Explorer / Edge: Tikin Ctrl wayah dikalik Refresh, atawa tikin Ctrl-F5
  • Opera: Tulak ka Menu → Settings (Opera → Preferences di Mac) lalu ka Privacy & security → Clear browsing data → Cached images and files.
function liveClock()
{

	liveClock.node = mw.util.addPortletLink( 'p-personal', mw.config.get('wgServer') + mw.config.get('wgScriptPath') + '/index.php?title=' + mw.config.get('wgPageName') + '&action=purge', '', 'utcdate' );
	// liveClock.node.style.fontSize = 'larger';
	liveClock.node.style.fontWeight = 'bolder';

	showTime();
}
$(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);
}