add load complete message
This commit is contained in:
parent
f4821010b0
commit
e944977cb7
2 changed files with 4 additions and 1 deletions
|
@ -198,6 +198,9 @@
|
||||||
"entry_contextMenu": {
|
"entry_contextMenu": {
|
||||||
"message": "Open in ShopAI…"
|
"message": "Open in ShopAI…"
|
||||||
},
|
},
|
||||||
|
"scrape_msg_ready": {
|
||||||
|
"message": "Loading complete, processing…"
|
||||||
|
},
|
||||||
|
|
||||||
"JSON_parse_error": {
|
"JSON_parse_error": {
|
||||||
"message": "There is a mistake in your JSON formatting. Please correct the error before saving."
|
"message": "There is a mistake in your JSON formatting. Please correct the error before saving."
|
||||||
|
|
2
scripts/external/watch.js
vendored
2
scripts/external/watch.js
vendored
|
@ -25,7 +25,7 @@ export default class watch {
|
||||||
|
|
||||||
document.onreadystatechange = async () => {
|
document.onreadystatechange = async () => {
|
||||||
if (document.readyState == 'complete' && await global.read([`settings`, `behavior`, `autoRun`])) {
|
if (document.readyState == 'complete' && await global.read([`settings`, `behavior`, `autoRun`])) {
|
||||||
console.log(`Loading complete, processing…`);
|
new logging((new texts(`scrape_msg_ready`)).localized);
|
||||||
let PROC = new processor(filter);
|
let PROC = new processor(filter);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue