From ab57b5e1dff96334d565890674d3db1e0665e904 Mon Sep 17 00:00:00 2001 From: "Stephane Lacoin (aka nxmatic)" Date: Tue, 2 Jul 2024 21:26:20 +0200 Subject: [PATCH] [loading] removed loading message, always display the content (should add a notifier) --- src/popup/index.html | 3 --- src/popup/index.js | 5 ----- 2 files changed, 8 deletions(-) diff --git a/src/popup/index.html b/src/popup/index.html index 4b71439..2fedbcd 100644 --- a/src/popup/index.html +++ b/src/popup/index.html @@ -21,9 +21,6 @@ -
diff --git a/src/popup/index.js b/src/popup/index.js index 6e3c109..bb5bf37 100644 --- a/src/popup/index.js +++ b/src/popup/index.js @@ -272,7 +272,6 @@ function loadPage(worker) { // For chrome browser, the designer live preview is enable // for version upper 72 - $('#designer-livepreview-need-update').hide(); if (browserVendor === 'Chrome') { const version = parseInt( /(Firefox|Chrome)\/(?[0-9\.]*)/g @@ -963,10 +962,6 @@ function loadPage(worker) { }); return Promise .all(pendingPromises) - .then(() => { - $('.popup-loading-message').hide(); - $('.content').show(); - }) .then(() => worker) .catch((error) => console.error(error)); })