feat: initial resumability *idea*
This commit is contained in:
parent
4b23610342
commit
8f18cf4253
1 changed files with 8 additions and 0 deletions
|
@ -11,6 +11,14 @@
|
||||||
function getHomeLabel() {
|
function getHomeLabel() {
|
||||||
return "Home" + "!!! " + new Date().toLocaleDateString();
|
return "Home" + "!!! " + new Date().toLocaleDateString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
greeting = "nope";
|
||||||
|
|
||||||
|
mcDelivery(() =>
|
||||||
|
setInterval(() => {
|
||||||
|
greeting = "hello " + new Date().toLocaleTimeString();
|
||||||
|
}, 1000)
|
||||||
|
);
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
Loading…
Reference in a new issue