main
html 20 lines 474 Bytes
Raw
1 <html>
2 <head>
3 <title>What's New in Agent Zero</title>
4 <script type="module">
5 import { closeModal, openModal } from "/js/modals.js";
6
7 const legacyPath = "/plugins/_whats_new/webui/whats-new.html";
8 const mainPath = "/plugins/_whats_new/webui/main.html";
9
10 queueMicrotask(async () => {
11 await closeModal(legacyPath);
12 await openModal(mainPath);
13 });
14 </script>
15 </head>
16
17 <body>
18 <div class="loading">Opening What's New...</div>
19 </body>
20 </html>