MediaWiki:Common.js: Difference between revisions

From Zelda Dungeon Wiki
Jump to navigation Jump to search
Want an adless experience? Log in or Create an account.
(adding Tabs2 so others can see the demo in my sandbox. It's basically done, I may add AJAX support and other features in the future.)
(removed hovergal, added tabs2 css)
Line 5: Line 5:
importStylesheet('MediaWiki:Tabs.css');
importStylesheet('MediaWiki:Tabs.css');
importScript('MediaWiki:Tabs.js');
importScript('MediaWiki:Tabs.js');
importStylesheet('MediaWiki:HoverGal.css');
importStylesheet('MediaWiki:Tabs2.css');
importScript('MediaWiki:HoverGal.js');
importScript('MediaWiki:Tabs2.js');
importScript('MediaWiki:Tabs2.js');



Revision as of 22:33, November 21, 2014

/* Any JavaScript here will be loaded for all users on every page load. */

importScript('MediaWiki:RankColor.js');
importScript('MediaWiki:Toggle.js');
importStylesheet('MediaWiki:Tabs.css');
importScript('MediaWiki:Tabs.js');
importStylesheet('MediaWiki:Tabs2.css');
importScript('MediaWiki:Tabs2.js');

/* add Templates and Sandbox links to the Toolbox */
addPortletLink( 'p-tb', '/wiki/Category:Templates', 'Templates', 't-templates', 'Available Templates' );
addPortletLink( 'p-tb', '/wiki/Zelda Dungeon Wiki:Sandbox', 'Sandbox', 't-sandbox', 'Sandbox for testing changes' );

/* fix word wrapping in ToC by adding 1 pixel to each ul in the ToC */
/* 
var uls = document.getElementById('toc').getElementsByTagName('ul')[0].getElementsByTagName('ul');
for(var i=0; i<uls.length; ++i) { uls[i].style.width = uls[i].clientWidth + 1 + "px"; }
*/