index.html 425 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. </head>
  7. <body>
  8. <h3>
  9. Secret:
  10. <span></span>
  11. </h3>
  12. <script src="../dist/lofig.min.js"></script>
  13. <script>
  14. console.log(lofig)
  15. lofig.has('secret', isSecret => {
  16. if (isSecret) lofig.get('secret', res => {
  17. document.getElementsByTagName('span')[0].innerHTML = res;
  18. });
  19. });
  20. </script>
  21. </body>
  22. </html>