actual editor with backup

This commit is contained in:
Fabien Benetou
2023-05-04 07:44:41 +02:00
parent c4bdda02aa
commit c09d11cc0c
4 changed files with 24 additions and 1 deletions

View File

@@ -1 +0,0 @@
test

5
examples/editor.html Normal file
View File

@@ -0,0 +1,5 @@
<html>
<textarea cols=60 rows=10></textarea>
<button onclick="fetch('/editor/save?content='+document.querySelector('textarea').value)">save</button>
<script>window.onload=_=>fetch('/editor/read').then( r => r.json() ).then( r => document.querySelector('textarea').value = r.msg)</script>
</html>

View File

@@ -0,0 +1,5 @@
<html>
<textarea cols=60 rows=10></textarea>
<button onclick="fetch('/editor/save?content='+document.querySelector('textarea').value)">save</button>
<script>window.onload=_=>fetch('/editor/read').then( r => r.json() ).then( r => document.querySelector('textarea').value = r.msg)</script>
</html>

14
examples/pwa/api.js Normal file
View File

@@ -0,0 +1,14 @@
let routes = [
'/',
'/pwa',
'/spawn',
'/interface/unregister',
'/interface/register',
'/services/unregister',
'/services/register',
'/services',
'/hmdlink/set',
'/hmdlink',
'/json',
'/localprototypes',
]