میڈیاویکی:Modern.js
یاددہانی: محفوظ کرنے کے بعد تازہ ترین تبدیلیوں کو دیکھنے کے لیے آپ کو اپنے براؤزر کا کیش صاف کرنا ہوگا۔
- فائرفاکس/ سفاری: جب Reload پر کلک کریں تو Shift دبا کر رکھیں، یا Ctrl-F5 یا Ctrl-R دبائیں (Mac پر R- )
- گوگل کروم: Ctrl-Shift-R دبائیں (Mac پر Shift-R-⌘)
- انٹرنیٹ ایکسپلورر: جب Refresh پر کلک کریں تو Ctrl یا Ctrl-F5 دبائیں
- اوپیرا: Tools → Preferences میں جائیں اور کیش صاف کریں
اس اسکرپٹ کی دستاویزی تفصیلات میڈیاویکی:Modern پر درج کی جا سکتی ہیں۔ نیز ایسا معلوم ہوتا ہے کہ اس اسکرپٹ کا ایک متعاقب .css صفحہ بھی میڈیاویکی:Modern.css پر موجود ہے۔ |
/* Any JavaScript here will be loaded for users using the Modern skin */
// 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;
}
}
}