commented out some debug console.log statement
This commit is contained in:
parent
b9357fd1ab
commit
d527c8d187
2 changed files with 2 additions and 2 deletions
|
|
@ -106,7 +106,7 @@ document.addEventListener('DOMContentLoaded', async () => {
|
||||||
|
|
||||||
let values = await getPrompts();
|
let values = await getPrompts();
|
||||||
|
|
||||||
console.log('>>>>>>>>>>>>>>>> values: ' + JSON.stringify(values));
|
//console.log('>>>>>>>>>>>>>>>> values: ' + JSON.stringify(values));
|
||||||
|
|
||||||
promptsList = new List('all_prompts', options, values);
|
promptsList = new List('all_prompts', options, values);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -198,7 +198,7 @@ export async function setDefaultPromptsProperties(prompts) {
|
||||||
prompts.forEach((prompt) => {
|
prompts.forEach((prompt) => {
|
||||||
default_prompts_properties[prompt.id] = {position_compose: prompt.position_compose, position_display: prompt.position_display, enabled: prompt.enabled};
|
default_prompts_properties[prompt.id] = {position_compose: prompt.position_compose, position_display: prompt.position_display, enabled: prompt.enabled};
|
||||||
});
|
});
|
||||||
console.log('>>>>>>>>>>>>>> default_prompts_properties: ' + JSON.stringify(default_prompts_properties));
|
//console.log('>>>>>>>>>>>>>> default_prompts_properties: ' + JSON.stringify(default_prompts_properties));
|
||||||
await browser.storage.sync.set({_default_prompts_properties: default_prompts_properties});
|
await browser.storage.sync.set({_default_prompts_properties: default_prompts_properties});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue