remove the reference to the nonexistent session storage
This commit is contained in:
parent
b47a641b88
commit
0915265f40
4 changed files with 79 additions and 79 deletions
|
@ -2,7 +2,7 @@
|
|||
Ask product information to Google Gemini. */
|
||||
|
||||
// Import the storage management module.
|
||||
import {global, session, compare} from "/scripts/secretariat.js";
|
||||
import {global, compare} from "/scripts/secretariat.js";
|
||||
import hash from "/scripts/utils/hash.js";
|
||||
import {URLs} from "/scripts/utils/URLs.js";
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ class Page_Error extends Page {
|
|||
};
|
||||
|
||||
async background() {
|
||||
// Wait until a change in the session storage.
|
||||
// Wait until a change in the storage.
|
||||
new background(async (changes) => {
|
||||
await this.update();
|
||||
this.fill();
|
||||
|
|
|
@ -18,7 +18,7 @@ class Page_Popup extends Page {
|
|||
};
|
||||
|
||||
async background() {
|
||||
// Wait until a change in the session storage.
|
||||
// Wait until a change in the storage.
|
||||
new background((changes) => {
|
||||
this.update();
|
||||
this.switch();
|
||||
|
|
|
@ -17,7 +17,7 @@ class Page_Results extends Page {
|
|||
};
|
||||
|
||||
async background() {
|
||||
// Wait until a change in the session storage.
|
||||
// Wait until a change in the storage.
|
||||
new background((changes) => {
|
||||
this.update();
|
||||
this.content();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue