View source for User:Syunsyunminmin/script-installer-core.js
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
// <nowiki>
( function () {
// An mw.Api object
var api;
// Keep "common" at beginning
var SKINS = [ "common", "monobook", "minerva", "vector", "vector-2022", "timeless" ];
// How many scripts do we need before we show the quick filter?
var NUM_SCRIPTS_FOR_SEARCH = 5;
// The master import list, keyed by target. (A "target" is a user JS subpage
// where the script is imported, like "common" or "vector".) Set in buildImportList
var imports = {};
// Local scripts, keyed on name; value will be the target. Set in buildImportList.
var localScriptsByName = {};
// How many scripts are installed?
var scriptCount = 0;
// Goes on the end of edit summaries
000
1:0
Return to User:Syunsyunminmin/script-installer-core.js.