Difference between revisions of "MediaWiki:Common.js"
From The Official Visionaire Studio: Adventure Game Engine Wiki
Line 3: | Line 3: | ||
/* import script is not always loading scripts fast enough, thus causing certain things not to work (random) - Lee */ | /* import script is not always loading scripts fast enough, thus causing certain things not to work (random) - Lee */ | ||
− | + | ||
− | + | // Local script url | |
− | + | mw.loader.load( 'index.php?title=MediaWiki:Common.js/slimscroll.js&action=raw&ctype=text/javascript' ); | |
− | + | mw.loader.load( 'index.php?title=MediaWiki:Common.js/ftoc.js&action=raw&ctype=text/javascript' ); | |
− | + | mw.loader.load( 'index.php?title=MediaWiki:Common.js/jquery-cookie.js&action=raw&ctype=text/javascript' ); | |
+ | mw.loader.load( 'index.php?title=MediaWiki:Common.js/lightswitch.js&action=raw&ctype=text/javascript' ); | ||
+ | mw.loader.load( 'index.php?title=MediaWiki:Common.js/tooltipster.js&action=raw&ctype=text/javascript' ); | ||
+ | |||
/*$("title").tooltips();*/ | /*$("title").tooltips();*/ |
Revision as of 22:05, 29 May 2018
/* Any JavaScript here will be loaded for all users on every page load. */
/* import script is not always loading scripts fast enough, thus causing certain things not to work (random) - Lee */
// Local script url
mw.loader.load( 'index.php?title=MediaWiki:Common.js/slimscroll.js&action=raw&ctype=text/javascript' );
mw.loader.load( 'index.php?title=MediaWiki:Common.js/ftoc.js&action=raw&ctype=text/javascript' );
mw.loader.load( 'index.php?title=MediaWiki:Common.js/jquery-cookie.js&action=raw&ctype=text/javascript' );
mw.loader.load( 'index.php?title=MediaWiki:Common.js/lightswitch.js&action=raw&ctype=text/javascript' );
mw.loader.load( 'index.php?title=MediaWiki:Common.js/tooltipster.js&action=raw&ctype=text/javascript' );
/*$("title").tooltips();*/
/* I think I added this ages ago for creating a "back to top button" - not valid with Chamleon template. (throws some error & doesn't display)
addOnloadHook(function() {
var elems = document.getElementsByClassName('editsection');
for (i = 0; i < elems.length; i++) {
var span = document.createElement('span');
var link = document.createElement('a');
link.href = '#top';
link.appendChild(document.createTextNode('▲'));
span.appendChild(document.createTextNode('['));
span.appendChild(link);
span.appendChild(document.createTextNode('] '));
elems[i].insertBefore(span, elems[i].firstChild);
}
});
*/