46 lines
1.5 KiB
JavaScript
46 lines
1.5 KiB
JavaScript
/** Functions related to the Stats page */
|
|
|
|
import { ToggleHeader } from '../../../Config/ToggleSetting';
|
|
import { CMOptions } from '../../../Config/VariablesAndData';
|
|
import { LatestReleaseNotes, ModDescription } from '../../../Data/Moddata.ts';
|
|
|
|
/**
|
|
* This function adds stats created by CookieMonster to the stats page
|
|
* @param {object} title On object that includes the title of the menu
|
|
*/
|
|
export default function AddMenuInfo(title) {
|
|
const info = document.createElement('div');
|
|
info.className = 'subsection';
|
|
|
|
const span = document.createElement('span');
|
|
span.style.cursor = 'pointer';
|
|
span.style.display = 'inline-block';
|
|
span.style.height = '14px';
|
|
span.style.width = '14px';
|
|
span.style.borderRadius = '7px';
|
|
span.style.textAlign = 'center';
|
|
span.style.backgroundColor = '#C0C0C0';
|
|
span.style.color = 'black';
|
|
span.style.fontSize = '13px';
|
|
span.style.verticalAlign = 'middle';
|
|
span.textContent = CMOptions.Header.InfoTab ? '-' : '+';
|
|
span.onclick = function () {
|
|
ToggleHeader('InfoTab');
|
|
Game.UpdateMenu();
|
|
};
|
|
title.appendChild(span);
|
|
info.appendChild(title);
|
|
|
|
if (CMOptions.Header.InfoTab) {
|
|
const description = document.createElement('div');
|
|
description.innerHTML = ModDescription;
|
|
info.appendChild(description);
|
|
const notes = document.createElement('div');
|
|
notes.innerHTML = LatestReleaseNotes;
|
|
info.appendChild(notes);
|
|
}
|
|
|
|
const menu = l('menu').children[1];
|
|
menu.insertBefore(info, menu.children[1]);
|
|
}
|