MediaWiki:Modern.js: различия между версиями
Перейти к навигации
Перейти к поиску
Mansur700 (обсуждение | вклад) (Керла агӀо: «//compatibility for all scripts expecting Monobook-like page structure document._realGEBI = document.getElementById document.getElementById = function(id){ var x = this...») |
Mansur700 (обсуждение | вклад) Нет описания правки Метка: ручная отмена |
(не показана 1 промежуточная версия этого же участника) | |
(нет различий)
|
Текущая версия от 09:55, 10 декабря 2021
//compatibility for all scripts expecting Monobook-like page structure
document._realGEBI = document.getElementById
document.getElementById = function(id){
var x = this._realGEBI(id)
if (x) return x
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
}
}