This commit is contained in:
Daniel van Noord
2021-01-30 01:10:08 +01:00
parent 0547381845
commit 63139933ce
3 changed files with 4 additions and 6 deletions

View File

@@ -3263,7 +3263,7 @@ CM.Disp.CreatePrefOption = function(config) {
input.style.width = '65px'; input.style.width = '65px';
input.setAttribute('value', CM.Options.Colors[CM.Disp.colors[i]]); input.setAttribute('value', CM.Options.Colors[CM.Disp.colors[i]]);
innerDiv.appendChild(input); innerDiv.appendChild(input);
let change = function() {CM.Options.Colors[this.targetElement.id] = this.toHEXString(); CM.Disp.UpdateColors(); CM.Config.SaveConfig(); console.log('done');}; let change = function() {CM.Options.Colors[this.targetElement.id] = this.toHEXString(); CM.Disp.UpdateColors(); CM.Config.SaveConfig();};
let picker = new JSColor(input, {hash: true, position: "right", onInput: change}) let picker = new JSColor(input, {hash: true, position: "right", onInput: change})
var label = document.createElement('label'); var label = document.createElement('label');
label.textContent = CM.ConfigData.Colors.desc[CM.Disp.colors[i]]; label.textContent = CM.ConfigData.Colors.desc[CM.Disp.colors[i]];
@@ -5503,18 +5503,17 @@ CM.load = function(str) {
* It is called by the last function in the footer * It is called by the last function in the footer
*/ */
CM.Footer.AddJscolor = function() { CM.Footer.AddJscolor = function() {
/**
CM.Footer.Jscolor = document.createElement('script'); CM.Footer.Jscolor = document.createElement('script');
CM.Footer.Jscolor.type = 'text/javascript'; CM.Footer.Jscolor.type = 'text/javascript';
CM.Footer.Jscolor.setAttribute('src', 'https://aktanusa.github.io/CookieMonster/jscolor/jscolor.js'); CM.Footer.Jscolor.setAttribute('src', 'https://aktanusa.github.io/CookieMonster/jscolor/jscolor.js');
document.head.appendChild(CM.Footer.Jscolor); document.head.appendChild(CM.Footer.Jscolor);
*/
jscolor.init(); jscolor.init();
} }
/** /**
* This functions starts the initizialization and register CookieMonster * This functions starts the initizialization and register CookieMonster
* It is called as the last function in this script's execution * It is called as the last function in this script's execution
* TODO: Make this async await
*/ */
if (!CM.isRunning) { if (!CM.isRunning) {
CM.Footer.AddJscolor(); CM.Footer.AddJscolor();

View File

@@ -2080,7 +2080,7 @@ CM.Disp.CreatePrefOption = function(config) {
input.style.width = '65px'; input.style.width = '65px';
input.setAttribute('value', CM.Options.Colors[CM.Disp.colors[i]]); input.setAttribute('value', CM.Options.Colors[CM.Disp.colors[i]]);
innerDiv.appendChild(input); innerDiv.appendChild(input);
let change = function() {CM.Options.Colors[this.targetElement.id] = this.toHEXString(); CM.Disp.UpdateColors(); CM.Config.SaveConfig(); console.log('done');}; let change = function() {CM.Options.Colors[this.targetElement.id] = this.toHEXString(); CM.Disp.UpdateColors(); CM.Config.SaveConfig();};
let picker = new JSColor(input, {hash: true, position: "right", onInput: change}) let picker = new JSColor(input, {hash: true, position: "right", onInput: change})
var label = document.createElement('label'); var label = document.createElement('label');
label.textContent = CM.ConfigData.Colors.desc[CM.Disp.colors[i]]; label.textContent = CM.ConfigData.Colors.desc[CM.Disp.colors[i]];

View File

@@ -52,18 +52,17 @@ CM.load = function(str) {
* It is called by the last function in the footer * It is called by the last function in the footer
*/ */
CM.Footer.AddJscolor = function() { CM.Footer.AddJscolor = function() {
/**
CM.Footer.Jscolor = document.createElement('script'); CM.Footer.Jscolor = document.createElement('script');
CM.Footer.Jscolor.type = 'text/javascript'; CM.Footer.Jscolor.type = 'text/javascript';
CM.Footer.Jscolor.setAttribute('src', 'https://aktanusa.github.io/CookieMonster/jscolor/jscolor.js'); CM.Footer.Jscolor.setAttribute('src', 'https://aktanusa.github.io/CookieMonster/jscolor/jscolor.js');
document.head.appendChild(CM.Footer.Jscolor); document.head.appendChild(CM.Footer.Jscolor);
*/
jscolor.init(); jscolor.init();
} }
/** /**
* This functions starts the initizialization and register CookieMonster * This functions starts the initizialization and register CookieMonster
* It is called as the last function in this script's execution * It is called as the last function in this script's execution
* TODO: Make this async await
*/ */
if (!CM.isRunning) { if (!CM.isRunning) {
CM.Footer.AddJscolor(); CM.Footer.AddJscolor();