Changed variable names

This commit is contained in:
Daniel van Noord
2021-02-09 23:13:42 +01:00
parent a025fe51d7
commit fec72bbf91
5 changed files with 76 additions and 85 deletions

View File

@@ -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();
}