පරිශීලක:බිඟුවා/modern.js

විකිපීඩියා වෙතින්

සටහන: සුරැකීමෙන් පසුව, වෙනස් කම් දැකගැනුමට ඔබගේ බ්‍රවුසරයෙහි කෑෂය මගහැරයෑමට ඔබට සිදුවිය හැක. ගූගල් ක්‍රෝම්, ෆයර්ෆොක්ස්, මයික්‍රොසොෆ්ට් එජ් සහ සෆාරි: Reload ඔබන අතරතුර ⇧ Shift ඔබන්න. සවිස්තරාත්ම උපදෙස් සහ වෙනත් බ්‍රව්සර වලට අදාළ තොරතුරු සඳහා, විකිපීඩියා:කෑෂය මගහැරයෑම වෙතට යොමු වන්න.

/* <syntaxhighlight lang="javascript"> */

/* Any JavaScript here will be loaded for users using the Modern skin */
$( 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;
        }
    }
}

/* </syntaxhighlight> */
"https://si.wikipedia.org/w/index.php?title=පරිශීලක:බිඟුවා/modern.js&oldid=475437" වෙතින් සම්ප්‍රවේශනය කෙරිණි