MediaWiki:Common.js: diferència entre les revisions

Mpuj (discussió | contribucions)
correcció
Mpuj (discussió | contribucions)
Millorar
Línia 615: Línia 615:
importScript( 'MediaWiki:Functions.js' );
importScript( 'MediaWiki:Functions.js' );


/******************************/
//<pre>
/* Rellotge de la barra Wikia */
// ============================================================
/******************************/
// Rellotge de la barra Wikia
importArticle({type:'script', article:'w:c:dev:DisplayTimer/code.js'});
// ============================================================
var refreshDate;
function addDate() {
    var UTCDate = ((new Date()).toUTCString()).replace("GMT", "(UTC)");
    $('#showdate').empty().append('<span style="font-weight: bold; text-transform: none;"><a title="Purge the server cache and update the contents of this page." href="' + wgArticlePath.replace('$1', wgPageName.replace(/ /g, '_')) + '?action=purge">' + UTCDate.substring(5) + '</a></span>');
    window.clearTimeout(refreshDate);
    refreshDate = window.setTimeout(addDate, 1000);
}
$(document).ready(function() {
    if (skin == 'oasis')
        $('<li id="displayTimer"><span id="showdate"></span></li>').appendTo('#GlobalNavigation');
    else
        $('#p-personal ul').prepend('<li><span id="showdate"></span></li>');
    addDate();
    refreshDate = window.setTimeout(addDate, 5000);
    $('#displayTimer').css({'font-size': "12px"});
});
//</pre>