Lompat ke isi

Pengguna:Py21/modern.js

Dari Wikipedia bahasa Indonesia, ensiklopedia bebas

Catatan: Setelah menyimpan, Anda harus memintas tembolok (cache) peramban Anda untuk melihat perubahannya. Google Chrome, Firefox, Microsoft Edge dan Safari: Tahan tombol Shift dan klik Muat ulang (Reload) di tombol bilah alat. Untuk detail dan instruksi tentang peramban lain, lihat halaman menghapus singgahan (Inggris).

/* Any JavaScript here will be loaded for users using the Modern skin */
/* Tooltip accesskey fix */
$( function() {
    var tooltipsToFix = [ 'p-cactions', 'mw_portlets', 'p-personal' ];
    for ( i = 0; i < tooltipsToFix.length; i++ ) {
        var block = document.getElementById( tooltipsToFix[i] );
        if ( block ) {
            updateTooltipAccessKeys( block.getElementsByTagName( 'a' ) );
        }
    }
} );
 
// Compatibility function to run scripts only tested on Monobook.
// Required for using Twinkle or Friendly (along with many other scripts).
document._realGEBI = document.getElementById;
document.getElementById = function( id ) {
    var x = this._realGEBI( id );
    if( x ) return x;
    else {
    // try to find a reasonable equivalent for monobook-specific element ids
        switch(id) {
            case 'content': return this._realGEBI( 'mw_content' );
            case 'column-content': return this._realGEBI( 'mw_contentwrapper' );
            case 'bodyContent': return this._realGEBI( 'mw_contentholder' );
            case 'column-one': return this._realGEBI( 'mw_portlets' );
            case 'globalWrapper': return this._realGEBI( 'mw_main' );
            default: return null;
        }
    }
}