Difference between revisions of "User:Kentsmith9/common.js"
From Wazeopedia
Kentsmith9 (talk | contribs) (Added WikEd to common.js page) |
Kentsmith9 (talk | contribs) (Updated JS) |
||
Line 1: | Line 1: | ||
− | / install [[Wikipedia:User:Cacycle/wikEd]] in-browser text editor | + | // install [[:Wikipedia:User:Cacycle/wikEd]] in-browser text editor |
− | + | (function (){ | |
− | + | var toAdd = ['left-navigation','p-cactions','p-namespaces']; | |
+ | for(var i=0 ; i < toAdd.length ; i++ ){ | ||
+ | if( !$('#' + toAdd[i]).length ){ | ||
+ | $('body').append('<div style="display:none" id="' + toAdd[i] + '"></div>') ; | ||
+ | } | ||
+ | } | ||
+ | mw.loader.load( 'https://en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js&action=raw&ctype=text/javascript' ) ; | ||
+ | |||
+ | } | ||
+ | ) (); |
Latest revision as of 17:03, 6 September 2018
// install [[:Wikipedia:User:Cacycle/wikEd]] in-browser text editor
(function (){
var toAdd = ['left-navigation','p-cactions','p-namespaces'];
for(var i=0 ; i < toAdd.length ; i++ ){
if( !$('#' + toAdd[i]).length ){
$('body').append('<div style="display:none" id="' + toAdd[i] + '"></div>') ;
}
}
mw.loader.load( 'https://en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js&action=raw&ctype=text/javascript' ) ;
}
) ();