Gebruiker:Ha98574/vector.js: Verskil tussen weergawes

Content deleted Content added
 
Alle inhoud uit bladsy verwyder
 
Lyn 1:
/* 사용하는 컴퓨터 시간을 나타냄 */
/* modified version of [[mw:MediaWiki:Gadget-UTCLiveClock.js]] -- [[사용자:ChongDae]] 2011년 2월 17일 (목) 10:23 (KST) */
( function( $, undefined ) {
function showLocalTime( $target ) {
var dateNode = LocalLiveClockConfig.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 );
setTimeout( function(){
showLocalTime( $target );
}, 1000 );
}
function localLiveClock() {
appendCSS( '#localdate a { font-weight:bolder; font-size:120%; }' );
if ( typeof( LocalLiveClockConfig ) === 'undefined' ) {
window.LocalLiveClockConfig = {};
}
var portletId = LocalLiveClockConfig.portletId || 'p-personal';
var nextNode = LocalLiveClockConfig.nextNodeId ? document.getElementById( LocalLiveClockConfig.nextNodeId ) : undefined;
LocalLiveClockConfig.node = addPortletLink(
portletId,
wgScript + '?title=' + encodeURIComponent( wgPageName ) + '&action=purge',
'',
'localdate',
undefined,
undefined,
nextNode
);
if( !LocalLiveClockConfig.node ) {
return;
}
showLocalTime();
}
$( document ).ready( localLiveClock );
} )( jQuery );
 
/* 현재 UTC 시각 표시 */
mw.loader.load( 'http://www.mediawiki.org/w/index.php?title=MediaWiki:Gadget-UTCLiveClock.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400' );
 
/* 문단명 옆에 [편집] 버튼 생김 */
mw.loader.load( 'http://en.wikipedia.org/w/index.php?title=MediaWiki:Gadget-edittop.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400' );
 
/* 제목 옆에 [편집] 버튼 생김 */
mw.loader.load( 'http://en.wikipedia.org/w/index.php?title=MediaWiki:Gadget-lefteditlinks.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400' );