pad

minimal etherpad alternative  https://pad.ce9e.org
git clone https://git.ce9e.org/pad.git

commit
b9f0a416993dce0b78dbe57d7d7c68ed987f0bcf
parent
b474d6176eed8555e17a0a70e5b3365caa8a8be8
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2020-05-03 11:02
mv files to static/

Diffstat

M index.html 4 ++--
R context.mjs -> static/context.mjs 0
R fuzzy.mjs -> static/fuzzy.mjs 0
R index.mjs -> static/index.mjs 2 +-
R signal.mjs -> static/signal.mjs 0
R style.css -> static/style.css 0

6 files changed, 3 insertions, 3 deletions


diff --git a/index.html b/index.html

@@ -5,10 +5,10 @@
    5     5 	<title>duct pad</title>
    6     6 	<meta http-equiv="Content-Security-Policy" content="default-src 'self'; connect-src http://via.ce9e.org">
    7     7 	<meta name="viewport" content="width=device-width" />
    8    -1 	<link rel="stylesheet" href="style.css">
   -1     8 	<link rel="stylesheet" href="/static/style.css">
    9     9 </head>
   10    10 <body>
   11    11 	<textarea autocomplete="off" autofocus></textarea>
   12    -1 	<script type="module" src="index.js"></script>
   -1    12 	<script type="module" src="/static/index.mjs"></script>
   13    13 </body>
   14    14 </html>

diff --git a/context.mjs b/static/context.mjs

diff --git a/fuzzy.mjs b/static/fuzzy.mjs

diff --git a/index.mjs b/static/index.mjs

@@ -1,5 +1,5 @@
    1     1 import * as context from './context.mjs';
    2    -1 import * as signal from './signal.js';
   -1     2 import * as signal from './signal.mjs';
    3     3 
    4     4 var room = location.hash.substr(1);
    5     5 var id = signal.randomString(10);

diff --git a/signal.mjs b/static/signal.mjs

diff --git a/style.css b/static/style.css