Reordered directory Disp/Settings
This commit is contained in:
2
dist/CookieMonster.js.map
vendored
2
dist/CookieMonster.js.map
vendored
File diff suppressed because one or more lines are too long
@@ -1,5 +1,5 @@
|
|||||||
/* eslint-disable no-unused-vars */
|
/* eslint-disable no-unused-vars */
|
||||||
import { crateMissing } from '../../Disp/MenuSections/CreateMissingUpgrades';
|
import { crateMissing } from '../../Disp/MenuSections/Statistics/CreateMissingUpgrades';
|
||||||
import {
|
import {
|
||||||
CacheMissingUpgrades,
|
CacheMissingUpgrades,
|
||||||
CacheMissingUpgradesCookies,
|
CacheMissingUpgradesCookies,
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { CMOptions } from '../../Config/VariablesAndData';
|
import { CMOptions } from '../../Config/VariablesAndData';
|
||||||
import AddMenuStats from './AddStatsPage';
|
import AddMenuStats from './Statistics/AddStatsPage';
|
||||||
import AddMenuInfo from './InfoPage';
|
import AddMenuInfo from './Info/InfoPage';
|
||||||
import AddMenuPref from './Settings/SettingsPage';
|
import AddMenuPref from './Settings/SettingsPage';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
/** Functions related to the Stats page */
|
/** Functions related to the Stats page */
|
||||||
|
|
||||||
import { ToggleHeader } from '../../Config/ToggleSetting';
|
import { ToggleHeader } from '../../../Config/ToggleSetting';
|
||||||
import { CMOptions } from '../../Config/VariablesAndData';
|
import { CMOptions } from '../../../Config/VariablesAndData';
|
||||||
import { LatestReleaseNotes, ModDescription } from '../../Data/Moddata';
|
import { LatestReleaseNotes, ModDescription } from '../../../Data/Moddata';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function adds stats created by CookieMonster to the stats page
|
* This function adds stats created by CookieMonster to the stats page
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
/* eslint-disable no-return-assign */
|
|
||||||
/** Creates a Prompt similar to the base game without some of the stuff breaking them */
|
/** Creates a Prompt similar to the base game without some of the stuff breaking them */
|
||||||
export default function CookieMonsterPrompt(content, options) {
|
export default function CookieMonsterPrompt(content, options) {
|
||||||
Game.promptWrapL.className = 'framed';
|
Game.promptWrapL.className = 'framed';
|
||||||
|
|||||||
@@ -3,19 +3,19 @@
|
|||||||
import { AddMissingUpgrades } from './CreateMissingUpgrades';
|
import { AddMissingUpgrades } from './CreateMissingUpgrades';
|
||||||
import * as CreateSections from './CreateStatsSections';
|
import * as CreateSections from './CreateStatsSections';
|
||||||
import * as CreateElements from './CreateDOMElements';
|
import * as CreateElements from './CreateDOMElements';
|
||||||
import * as GameData from '../../Data/Gamedata';
|
import * as GameData from '../../../Data/Gamedata';
|
||||||
import { CMOptions } from '../../Config/VariablesAndData';
|
import { CMOptions } from '../../../Config/VariablesAndData';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
CacheAverageClicks,
|
CacheAverageClicks,
|
||||||
CacheWrinklersFattest,
|
CacheWrinklersFattest,
|
||||||
CacheWrinklersNormal,
|
CacheWrinklersNormal,
|
||||||
CacheWrinklersTotal,
|
CacheWrinklersTotal,
|
||||||
} from '../../Cache/VariablesAndData';
|
} from '../../../Cache/VariablesAndData';
|
||||||
import PopAllNormalWrinklers from '../HelperFunctions/PopWrinklers';
|
import PopAllNormalWrinklers from '../../HelperFunctions/PopWrinklers';
|
||||||
import { ClickTimes, CookieTimes } from '../VariablesAndData';
|
import { ClickTimes, CookieTimes } from '../../VariablesAndData';
|
||||||
import GetCPS from '../HelperFunctions/GetCPS';
|
import GetCPS from '../../HelperFunctions/GetCPS';
|
||||||
import { Beautify } from '../BeautifyAndFormatting/BeautifyFormatting';
|
import { Beautify } from '../../BeautifyAndFormatting/BeautifyFormatting';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function adds stats created by CookieMonster to the stats page
|
* This function adds stats created by CookieMonster to the stats page
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
/** Section: Functions related to the creation of basic DOM elements page */
|
/** Section: Functions related to the creation of basic DOM elements page */
|
||||||
|
|
||||||
import { ToggleHeader } from '../../Config/ToggleSetting';
|
import { ToggleHeader } from '../../../Config/ToggleSetting';
|
||||||
import { CMOptions } from '../../Config/VariablesAndData';
|
import { CMOptions } from '../../../Config/VariablesAndData';
|
||||||
import { SimpleTooltipElements } from '../VariablesAndData';
|
import { SimpleTooltipElements } from '../../VariablesAndData';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function creates a header-object for the stats page
|
* This function creates a header-object for the stats page
|
||||||
@@ -4,7 +4,7 @@ import {
|
|||||||
CacheMissingUpgrades,
|
CacheMissingUpgrades,
|
||||||
CacheMissingUpgradesCookies,
|
CacheMissingUpgradesCookies,
|
||||||
CacheMissingUpgradesPrestige,
|
CacheMissingUpgradesPrestige,
|
||||||
} from '../../Cache/VariablesAndData';
|
} from '../../../Cache/VariablesAndData';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function creates the missing upgrades sections for prestige, normal and cookie upgrades
|
* This function creates the missing upgrades sections for prestige, normal and cookie upgrades
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
/** Functions to create the individual sections of the Statistics page */
|
/** Functions to create the individual sections of the Statistics page */
|
||||||
|
|
||||||
import * as GameData from '../../Data/Gamedata';
|
import * as GameData from '../../../Data/Gamedata';
|
||||||
import { MaxChainCookieReward } from '../../Cache/Stats/ChainCookies';
|
import { MaxChainCookieReward } from '../../../Cache/Stats/ChainCookies';
|
||||||
import {
|
import {
|
||||||
CacheAvgCPSWithChoEgg,
|
CacheAvgCPSWithChoEgg,
|
||||||
CacheCentEgg,
|
CacheCentEgg,
|
||||||
@@ -35,17 +35,17 @@ import {
|
|||||||
CacheSeaSpec,
|
CacheSeaSpec,
|
||||||
CacheWrathCookiesMult,
|
CacheWrathCookiesMult,
|
||||||
CacheWrinklersTotal,
|
CacheWrinklersTotal,
|
||||||
} from '../../Cache/VariablesAndData';
|
} from '../../../Cache/VariablesAndData';
|
||||||
import { CMOptions } from '../../Config/VariablesAndData';
|
import { CMOptions } from '../../../Config/VariablesAndData';
|
||||||
import ResetBonus from '../../Sim/SimulationEvents/ResetAscension';
|
import ResetBonus from '../../../Sim/SimulationEvents/ResetAscension';
|
||||||
import {
|
import {
|
||||||
Beautify,
|
Beautify,
|
||||||
FormatTime,
|
FormatTime,
|
||||||
} from '../BeautifyAndFormatting/BeautifyFormatting';
|
} from '../../BeautifyAndFormatting/BeautifyFormatting';
|
||||||
|
|
||||||
import GetCPS from '../HelperFunctions/GetCPS';
|
import GetCPS from '../../HelperFunctions/GetCPS';
|
||||||
import GetWrinkConfigBank from '../HelperFunctions/GetWrinkConfigBank';
|
import GetWrinkConfigBank from '../../HelperFunctions/GetWrinkConfigBank';
|
||||||
import { ColourGreen, ColourRed, ColourTextPre } from '../VariablesAndData';
|
import { ColourGreen, ColourRed, ColourTextPre } from '../../VariablesAndData';
|
||||||
import { StatsListing, StatsHeader, StatsMissDisp } from './CreateDOMElements';
|
import { StatsListing, StatsHeader, StatsMissDisp } from './CreateDOMElements';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Reference in New Issue
Block a user