MediaWiki:Gadget-EditTop.js

A UESPWiki – Sua fonte de The Elder Scrolls desde 1995

Nota: Após gravar, terá de limpar a cache do seu navegador para ver as alterações.

  • Firefox / Safari: Pressione Shift enquanto clica Recarregar, ou pressione Ctrl-F5 ou Ctrl-R (⌘-R no Mac)
  • Google Chrome: Pressione Ctrl-Shift-R (⌘-Shift-R no Mac)
  • Internet Explorer: Pressione Ctrl enquanto clica Recarregar, ou pressione Ctrl-F5
  • Opera: Ir para Menu → Configurações (Opera → Preferências no Mac) e, em seguida, Privacidade e segurança → Limpar dados de navegação → Imagens e ficheiros em cache.
/*
<nowiki>
*/
// **********************************************************************
// **                 ***WARNING GLOBAL GADGET FILE***                 **
// **             changes to this file affect many users.              **
// **      please discuss on the admin noticeboard before editing      **
// **                                                                  **
// **********************************************************************
// Imported from [[User:Alex Smotrov/edittop.js]], version as of: 2007-06-19T04:28:52
// Updated from [[User:TheDJ/Gadget-edittop.js]], version as of: 2009-04-28T11:54:22

setTimeout(afterDelay, 500); // Workaround for Firefox (and others?) not having finished rendering and returning incorrect offsetWidth for pageicons.

function afterDelay() {
    if ($.inArray( mw.config.get('wgAction'), [ 'view', 'purge' ]) === -1 || mw.config.get( 'wgNamespaceNumber' ) < 0) {
        return;
    }

    var localtitles = {
        cs: 'Editovat úvodní sekci',
        en: 'Edit lead section',
        fa: 'ویرایش بخش آغازین',
        fr: 'Modifier le résumé introductif',
        id: 'Sunting bagian atas',
        it: 'Modifica della sezione iniziale',
        ja: '導入部を編集',
        kk: 'Кіріспе бөлімді өңдеу',
        min: 'Suntiang bagian ateh',
        ko: '도입부를 편집',
        pa: 'ਸੋਧ',
        pt: 'Editar a seção superior',
        'pt-br': 'Editar a seção superior',
        sr: 'Уреди уводни део',
        vi: 'Sửa phần mở đầu'
    };

    var our_content = $("#content, #mw_content").first();
    var span1 = our_content.find("span.mw-editsection:not(.plainlinks)").first();
    if (!span1.length) {
        return;
    }

    var span0 = span1.clone();
    var topicons = $(".pageiconright");
    if (topicons.length > 0) {
        var editleft = 10;

        for (var el = 0; el < topicons.length; el++) {
            editleft += topicons[el].offsetWidth;
        }

        span0.css("margin-right", editleft);
    }

    $("#mw_header h1, #content h1").first().append(span0);

    span0.find("a").each(function (idx) {
        var a = $(this);
        a.attr("title", localtitles[mw.config.get( 'wgUserLanguage' )] || localtitles.en);
        if ( !/&(ve|)section=T/.test( a.attr( "href" ) ) ) { // not transcluded
            a.attr( "href", a.attr( "href" ).replace( /&(ve|)section=\d+/, "&$1section=0&summary=/*%20top%20*/%20" ) );
        } else if ( /&vesection=/.test( a.attr( "href" ) ) ) { // transcluded, VE
            a.attr( "href", mw.util.getUrl( mw.config.get( 'wgPageName' ) ) + "?veaction=edit&vesection=0&summary=/*%20top%20*/%20" );
        } else { // transcluded, not VE
            a.attr( "href", mw.util.getUrl( mw.config.get( 'wgPageName' ) ) + "?action=edit&section=0&summary=/*%20top%20*/%20" );
        }
    });
}
/*
</nowiki>
*/