gun/test/download-log.html
2020-09-19 19:18:30 -07:00

13 lines
239 B
HTML

<html>
<body>
Paste the log URL into here:
<input id="peer">
Then right click save-as here:
<a id="url">right click not normal click</a>
<script>
peer.onkeyup = function(){
url.href = url.download = this.value;
}
</script>
</body>
</html>