diff options
author | Kuuuube <61125188+Kuuuube@users.noreply.github.com> | 2024-06-20 00:18:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-20 04:18:51 +0000 |
commit | bba9ceb870a742bac1aef2c6ddd2b858917a2ea1 (patch) | |
tree | d4b9d20d1cf762c8a0ede268bca21e7cd7788a25 /ext/action-popup.html | |
parent | d9521c58bf9b9fef0c8b1248bf6ce8c69351fc16 (diff) |
Show loading message before action popup is loaded (#1090)
Diffstat (limited to 'ext/action-popup.html')
-rw-r--r-- | ext/action-popup.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ext/action-popup.html b/ext/action-popup.html index e160b0fc..64e3c21f 100644 --- a/ext/action-popup.html +++ b/ext/action-popup.html @@ -14,8 +14,13 @@ <link rel="stylesheet" type="text/css" href="/css/action-popup.css"> <script src="/js/pages/action-popup-main.js" type="module"></script> </head> -<body hidden> +<body> +<div id="loading"> + Loading... +</div> + +<div id="action-popups"> <div id="mini"> <label class="toggle"> <input type="checkbox" class="enable-search"> @@ -86,6 +91,7 @@ <span class="link-group-icon" data-icon="question-mark-circle"></span><span class="link-group-label">Information</span> </a> </div> +</div> </body> </html> |