Difference between revisions of "MediaWiki:Common.js"
From Reallusion Wiki!
(Created page with "→Any JavaScript here will be loaded for all users on every page load.: $(document).ready( function() { if (location.pathname.toLowerCase().indexOf('/ic_python_api')===...") |
(No difference)
|
Revision as of 21:48, 6 May 2020
/* Any JavaScript here will be loaded for all users on every page load. */
$(document).ready( function() {
if (location.pathname.toLowerCase().indexOf('/ic_python_api')===0) {
var tree = $('#wikitext-sidebar');
$(tree).detach().appendTo("#mw-panel");
$(tree).show();
$(tree).bind('fancytreeinit', function(event, data) {
data.tree.makeTitleVisible();
});
}
});