Content deleted Content added
m wgCanonicalNamespace |
maintenance: more info TypeError: Cannot read property 'parentNode' of null |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1:
//<nowiki>
// See http://en.wikipedia.org/wiki/User:Cameltrader/Advisor.js/Description
// for details and installation instructions.
Line 252 ⟶ 253:
var e = document.getElementById('editform');
while (true) {
var p = e && e.previousSibling;
if ( (p == null) || ((p.nodeType == 1) && (p.id != 'toolbar')) ) {
break;
Line 258 ⟶ 259:
e = p;
}
if(e) {
} else {
return;
}
ct.eAddToSummary = document.createElement('DIV');
ct.eAddToSummary.style.border = 'dashed #ccc 1px';
Line 1,482 ⟶ 1,487:
} // end if (mw.config.get('wgContentLanguage') === 'en') // end of default rules
//</nowiki>
|