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.
No edit summary
(toolbox links)
Line 4: Line 4:
importStylesheet('MediaWiki:Tabs.css');
importStylesheet('MediaWiki:Tabs.css');
importScript('MediaWiki:RankColor.js');
importScript('MediaWiki:RankColor.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 */
/* 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');
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"; }
for(var i=0; i<uls.length; ++i) { uls[i].style.width = uls[i].clientWidth + 1 + "px"; }

Revision as of 20:28, November 3, 2012

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

importScript('MediaWiki:Toggle.js');
importStylesheet('MediaWiki:Tabs.css');
importScript('MediaWiki:RankColor.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"; }