Pengguna:Kenrick95/clock-local.js: Perbedaan antara revisi

Konten dihapus Konten ditambahkan
Kenrick95 (bicara | kontrib)
Tidak ada ringkasan suntingan
Kenrick95 (bicara | kontrib)
dari mw:MediaWiki:Gadget-UTCLiveClock.js dengan pengubahan
Baris 1:
( function( $, undefined ) {
function liveClock()
{
if (typeof(UTCLiveClockConfig)=='undefined') UTCLiveClockConfig = {};
var portletId = UTCLiveClockConfig.portletId || 'p-personal';
var nextNode = UTCLiveClockConfig.nextNodeId ? document.getElementById(UTCLiveClockConfig.nextNodeId) : undefined;
liveClock.node = addPortletLink( portletId, wgServer + wgScriptPath + '/index.php?title=' + encodeURIComponent(wgPageName) + '&action=purge', '', 'utcdate', undefined, undefined, nextNode );
if( !liveClock.node ) return;
liveClock.node.style.fontSize = 'medium';
liveClock.node.style.fontWeight = 'bolder';
function showTime( $target ); {
var dateNode = liveClockUTCLiveClockConfig.node;
addOnloadHook(liveClock)
function showTime()
{
var dateNode = liveClock.node;
if( !dateNode ) {
return;
}
var now = new Date();
var hh = now.getHours();
var mm = now.getMinutes();
var ss = now.getSeconds();
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 );
dateNode.firstChild.replaceChild( document.createTextNode( time ), dateNode.firstChild.firstChild );
window.setTimeout(showTime, 1000function();{
showTime( $target );
}, 1000 );
}
function liveClock() {
appendCSS( '#utcdate a { font-weight:bolder; font-size:120%; }' );
if ( typeof( UTCLiveClockConfig ) === 'undefined') UTCLiveClockConfig =) {};
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;
}
function showTime();
$( document ).ready( liveClock );
} )( jQuery );