UI for Zipcoin Blue

test.iframecontents.html 487B

12345678910111213141516171819
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Sub iFrame Test</title>
  6. </head>
  7. <body>
  8. <div id="my-text"></div>
  9. <script src="/dist/localforage.js"></script>
  10. <script>localforage.setItem('my cool key',
  11. 'I have been set').then(function() {
  12. localforage.getItem('my cool key').then(function(value) {
  13. document.getElementById('my-text').innerHTML = value;
  14. });
  15. });</script>
  16. </body>
  17. </html>