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

Konten dihapus Konten ditambahkan
Kenrick95 (bicara | kontrib)
kTidak ada ringkasan suntingan
Kenrick95 (bicara | kontrib)
kTidak ada ringkasan suntingan
Baris 6:
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 = 'largerlarge';
liveClock.node.style.fontWeight = 'bolder';
Baris 24:
var mm = now.getMinutes();
var ss = now.getSeconds();
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 );