5,566
edits
No edit summary |
No edit summary |
||
Line 12: | Line 12: | ||
function mwCollapsibleSetup($collapsibleContent) { | function mwCollapsibleSetup($collapsibleContent) { | ||
var $element, autoCollapseThreshold = 2; | var $element, autoCollapseThreshold = 2; | ||
$.each($collapsibleContent, function (index, element) { | $.each($collapsibleContent, function(index, element) { | ||
$element = $(element); | $element = $(element); | ||
if ($collapsibleContent.length >= autoCollapseThreshold && $element.hasClass('autocollapse')) | if ($collapsibleContent.length >= autoCollapseThreshold && $element.hasClass('autocollapse')) | ||
Line 23: | Line 23: | ||
$(function() { | $(function() { | ||
if (mw.config.get('wgAction') === 'edit' || mw.config.get('wgAction') === 'submit') | if (mw.config.get('wgAction') === 'edit' || mw.config.get('wgAction') === 'submit') | ||
mw.loader.getScript('https://www.pikminwiki.com/index.php?title=MediaWiki:Pikan-core.js&action=raw&ctype=text/javascript').then( | |||
function() { | |||
mw.loader.load('https://www.pikminwiki.com/index.php?title=MediaWiki:Pikan-pikipedia.js&action=raw&ctype=text/javascript'); | |||
} | |||
); | |||
}); | }); |