Difference between revisions of "MediaWiki:Common.js/slimscroll.js"
From The Official Visionaire Studio: Adventure Game Engine Wiki
| Line 1: | Line 1: | ||
| − | /* | + | /* 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); | ||
| + | } | ||
| + | }); | ||
| + | */ | ||
Revision as of 09:31, 1 June 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);
}
});
*/