index.html 601 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Lofig | Example</title>
  8. </head>
  9. <body>
  10. <h3>
  11. Secret:
  12. <span id="secret"></span>
  13. </h3>
  14. <script src="../dist/lofig.min.js"></script>
  15. <script>
  16. lofig.folder = "./config/default.json";
  17. (async () => {
  18. document.getElementById("secret").textContent = await lofig.get('secret');
  19. document.getElementById("secret").style.color = "tomato";
  20. })();
  21. </script>
  22. </body>
  23. </html>