MediaWiki:Gadget-UTCLiveClock.js: diferenças entre revisões

Conteúdo apagado Conteúdo adicionado
nova página: // UTC Live Clock // Created by w:User:AzaToth // // Adds a clock in the personal toolbar ...
(Sem diferenças)

Revisão das 15h26min de 29 de maio de 2008

 // UTC Live Clock
 // Created by [[w:User:AzaToth]]
 //
 // Adds a clock in the personal toolbar that shows the current time in UTC, and provides a purge link.

function liveClock()
{

	liveClock.node = addPortletLink( 'p-personal', wgServer + wgScriptPath + '/index.php?title=' + 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);
}