55 lines
1.7 KiB
HTML
55 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Tooty</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="//bootswatch.com/slate/bootstrap.min.css" media="all" rel="stylesheet" />
|
|
<link href="style.css" media="all" rel="stylesheet" />
|
|
<link rel="icon" type="image/png" sizes="192x192" href="images/favicon-192x192.png">
|
|
<link rel="icon" type="image/png" sizes="96x96" href="images/favicon-96x96.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
|
|
<meta name="msapplication-TileColor" content="#272b30">
|
|
<meta name="theme-color" content="#272b30">
|
|
</head>
|
|
|
|
<body>
|
|
<script src="app.js"></script>
|
|
<script>
|
|
|
|
const app = Elm.Main.fullscreen({
|
|
client: JSON.parse(localStorage.getItem("tooty.client")),
|
|
registration: JSON.parse(localStorage.getItem("tooty.registration"))
|
|
});
|
|
|
|
app.ports.saveClient.subscribe(json => {
|
|
localStorage.setItem("tooty.client", json);
|
|
});
|
|
|
|
app.ports.saveRegistration.subscribe(json => {
|
|
localStorage.setItem("tooty.registration", json);
|
|
});
|
|
|
|
app.ports.setStatus.subscribe(function(data) {
|
|
var element = document.getElementById(data.id);
|
|
if (element) {
|
|
element.value = data.status;
|
|
// Reset cursor at the end
|
|
element.focus();
|
|
}
|
|
});
|
|
|
|
app.ports.scrollIntoView.subscribe(function(id) {
|
|
requestAnimationFrame(function() {
|
|
var element = document.getElementById(id);
|
|
if (element) {
|
|
element.scrollIntoView(false);
|
|
}
|
|
});
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|