MediaWiki:Gadget-UTCLiveClock.js: Różnice pomiędzy wersjami

Z Almanach
(Utworzył nową stronę „→‎Warning! Global gadget file!: function liveClock(){ liveClock.node = addPortletLink( 'p-personal', wgServer + wgScriptPath + '/index.php?title=' + encodeURICompo...”)
 
Nie podano opisu zmian
Linia 1: Linia 1:
/* Warning! Global gadget file! */
/* Warning! Global gadget file! */
 
( function( $, undefined ) {
function liveClock(){
liveClock.node = addPortletLink( 'p-personal', wgServer + wgScriptPath + '/index.php?title=' + encodeURIComponent(wgPageName) + '&action=purge', '', 'utcdate' );
function showTime( $target ) {
liveClock.node.style.fontSize = 'larger';
var dateNode = UTCLiveClockConfig.node;
liveClock.node.style.fontWeight = 'bolder';
 
showTime();
}
addOnloadHook(liveClock);
 
function showTime(){
var dateNode = liveClock.node;
if( !dateNode ) {
if( !dateNode ) {
return;
return;
}
}
 
var now = new Date();
var now = new Date();
var hh = now.getUTCHours();
var hh = now.getUTCHours();
var mm = now.getUTCMinutes();
var mm = now.getUTCMinutes();
var ss = now.getUTCSeconds();
var ss = now.getUTCSeconds();
if ( typeof $target === 'undefined' ) {
$target = $( dateNode ).find( 'a:first' );
}
var time = ( hh < 10 ? '0' + hh : hh ) + ':' + ( mm < 10 ? '0' + mm : mm ) + ':' + ( ss < 10 ? '0' + ss : ss );
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 );
$target.text( time );
 
window.setTimeout(showTime, 1000);
setTimeout( function(){
showTime( $target );
}, 1000 );
}
function liveClock() {
appendCSS( '#utcdate a { font-weight:bolder; font-size:120%; }' );
if ( typeof( UTCLiveClockConfig ) === 'undefined' ) {
window.UTCLiveClockConfig = {};
}
var portletId = UTCLiveClockConfig.portletId || 'p-personal';
var nextNode = UTCLiveClockConfig.nextNodeId ? document.getElementById( UTCLiveClockConfig.nextNodeId ) : undefined;
UTCLiveClockConfig.node = addPortletLink(
portletId,
wgScript + '?title=' + encodeURIComponent( wgPageName ) + '&action=purge',
'',
'utcdate',
undefined,
undefined,
nextNode
);
if( !UTCLiveClockConfig.node ) {
return;
}
showTime();
}
}
$( document ).ready( liveClock );
} )( jQuery );

Wersja z 21:05, 4 lip 2011

/* Warning! Global gadget file! */
( function( $, undefined ) {
 
function showTime( $target ) {
	var dateNode = UTCLiveClockConfig.node;
	if( !dateNode ) {
		return;
	}
 
	var now = new Date();
	var hh = now.getUTCHours();
	var mm = now.getUTCMinutes();
	var ss = now.getUTCSeconds();
	if ( typeof $target === 'undefined' ) {
		$target = $( dateNode ).find( 'a:first' );
	}
	var time = ( hh < 10 ? '0' + hh : hh ) + ':' + ( mm < 10 ? '0' + mm : mm ) + ':' + ( ss < 10 ? '0' + ss : ss );
	$target.text( time );
 
	setTimeout( function(){
		showTime( $target );	
	}, 1000 );
}
 
function liveClock() {
	appendCSS( '#utcdate a { font-weight:bolder; font-size:120%; }' );
 
	if ( typeof( UTCLiveClockConfig ) === 'undefined' ) {
		window.UTCLiveClockConfig = {};
	}
	var portletId = UTCLiveClockConfig.portletId || 'p-personal';
	var nextNode = UTCLiveClockConfig.nextNodeId ? document.getElementById( UTCLiveClockConfig.nextNodeId ) : undefined;
	UTCLiveClockConfig.node = addPortletLink(
		portletId,
		wgScript + '?title=' + encodeURIComponent( wgPageName ) + '&action=purge',
		'',
		'utcdate',
		undefined,
		undefined,
		nextNode
	);
	if( !UTCLiveClockConfig.node ) {
		return;
	}
 
	showTime();
}
$( document ).ready( liveClock );
 
} )( jQuery );