28 lines
727 B
HTML
28 lines
727 B
HTML
<html>
|
|
<head>
|
|
<title>Textnow</title>
|
|
<link rel="manifest" href="https://lax18.github.io/TextnowWebApp/manifest.json">
|
|
<script src="script.js"></script>
|
|
<script>
|
|
if ('serviceWorker' in navigator) {
|
|
window.addEventListener('load', function() {
|
|
navigator.serviceWorker.register('service-worker.js').then(function(registration) {
|
|
// Registration was successful
|
|
console.log('Registered!');
|
|
}, function(err) {
|
|
// registration failed :(
|
|
console.log('ServiceWorker registration failed: ', err);
|
|
}).catch(function(err) {
|
|
console.log(err);
|
|
});
|
|
});
|
|
} else {
|
|
console.log('service worker is not supported');
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<iframe src="http://www.textnow.com"></iframe>
|
|
</body>
|
|
</html>
|