UNPKG

generator-steroids

Version:
32 lines (18 loc) 632 B
<script> var uptime = 0; window.setInterval(function() { // Updates the uptime counter uptime++; var uptimeElem = document.querySelector("#uptime"); uptimeElem.textContent = uptime; // Sends message for the main view that listens with addEventListener("message") var msg = { uptime: uptime }; window.postMessage(msg, "*"); }, 1000); </script> <div class="content-padded"> <h1>Preloaded WebView</h1> <p>Uptime: <span id="uptime">0</span> seconds</p> <p>The value of this input stays even if you pop this layer with the back button!</p> <input type="text" value="testing"> </ul>