MediaWiki:Common.js: Difference between revisions
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
'wgCategories' | 'wgCategories' | ||
]); | ]); | ||
console.log('here'); | |||
console.log(pageCats); | |||
if ( $.inArray('Hide edit with form', pageCats ) !== -1 ) { | if ( $.inArray('Hide edit with form', pageCats ) !== -1 ) { | ||
// Hide visual editor button at top-right | // Hide visual editor button at top-right | ||
$("#ca-formedit").hide(); | $("#ca-formedit").hide(); | ||
console.log('there'); | |||
} | } |
Revision as of 12:51, 28 February 2018
jQuery(document).ready(function($) {
var pops = function( elems ) {
for (var i=0; i<elems.length; i++) {
if ( !(' '+elems[i].className+' ').match( / pops / ) ) continue;
var anchs = elems[i].getElementsByTagName('a');
for (var j=0; j<anchs.length; j++) anchs[j].target = '_blank';
}
};
var bc = document.getElementById('bodyContent');
if (bc !== null) {
var tags = ['span', 'div', 'table', 'td', 'th'];
for (var i=0; i<tags.length; i++) pops( bc.getElementsByTagName( tags[i] ) );
}
} );
var pageCats = mw.config.get([
'wgCategories'
]);
console.log('here');
console.log(pageCats);
if ( $.inArray('Hide edit with form', pageCats ) !== -1 ) {
// Hide visual editor button at top-right
$("#ca-formedit").hide();
console.log('there');
}