Difference between revisions of "MediaWiki:Common.js"
From The Official Visionaire Studio: Adventure Game Engine Wiki
Line 10: | Line 10: | ||
− | + | $(document).ready(function() { | |
− | |||
new $.Zebra_Tooltips($('.tooltips')); | new $.Zebra_Tooltips($('.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) | /* 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) |
Revision as of 15:37, 18 January 2015
/* 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 */
/*importScript( 'MediaWiki:Common.js/slimscroll.js' );*/
/*importScript( 'MediaWiki:Common.js/ftoc.js' );*/
/*importScript( 'MediaWiki:Common.js/jquery-cookie.js' );*/
/*importScript( 'MediaWiki:Common.js/lightswitch.js' );*/
importScript( 'MediaWiki:Common.js/Tooltips.js' );
$(document).ready(function() {
new $.Zebra_Tooltips($('.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);
}
});
*/