Changed variable names
This commit is contained in:
@@ -5,33 +5,17 @@
|
||||
/**
|
||||
* This functions creates the necessary objects and is run when they do not already exist
|
||||
*/
|
||||
const RunCookieMonsterHeader = function() {
|
||||
CM = {};
|
||||
CM.VersionMajor = '2.031';
|
||||
CM.VersionMinor = '3';
|
||||
|
||||
CM.Backup = {};
|
||||
|
||||
CM.Cache = {};
|
||||
|
||||
CM.Config = {};
|
||||
|
||||
CM.ConfigData = {};
|
||||
|
||||
CM.Data = {};
|
||||
|
||||
CM.Disp = {};
|
||||
|
||||
CM.Footer = {};
|
||||
|
||||
CM.Main = {};
|
||||
|
||||
CM.Options = {};
|
||||
|
||||
CM.Sim = {};
|
||||
const CM = {
|
||||
Backup: {},
|
||||
Cache: {},
|
||||
Config: {},
|
||||
ConfigData: {},
|
||||
Data: {},
|
||||
Disp: {},
|
||||
Footer: {},
|
||||
Main: {},
|
||||
Options: {},
|
||||
Sim: {},
|
||||
VersionMajor: '2.031',
|
||||
VersionMinor: '3',
|
||||
};
|
||||
|
||||
if (typeof CM == "undefined") {
|
||||
RunCookieMonsterHeader();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user