MediaWiki:Gadget-UTCLiveClock.js: Difference between revisions
Content deleted Content added
freaking opera fix |
tyop |
||
Line 22:
var now = new Date();
var hh = now.getUTCHours();
var mm =
var ss = now.getUTCSeconds();
var time = ( hh < 10 ? '0' + hh : hh ) + ':' + ( mm < 10 ? '0' + mm : mm ) + ':' + ( ss < 10 ? '0' + ss : ss );
|