Skip to content

Commit

Permalink
[loading] removed loading message, always display the content (should…
Browse files Browse the repository at this point in the history
… add a notifier)
  • Loading branch information
nxmatic committed Jul 10, 2024
1 parent b5c3237 commit ab57b5e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
3 changes: 0 additions & 3 deletions src/popup/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@
<script type="module" src="index.js"></script>
</head>
<body>
<div class="popup-loading-message">
<p>Popup loading...</p>
</div>
<div class="content">
<div class="shade"></div>
<div class="shade-popup" id="no-studio-package-registered">
Expand Down
5 changes: 0 additions & 5 deletions src/popup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)\/(?<version>[0-9\.]*)/g
Expand Down Expand Up @@ -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));
})
Expand Down

0 comments on commit ab57b5e

Please sign in to comment.