add support for pasting files

master
neri 1 year ago
parent 6601e719c9
commit 29add89e3d

@ -1,6 +1,6 @@
[package]
name = "datatrash"
version = "1.0.0"
version = "1.1.0"
authors = ["neri"]
edition = "2021"

@ -0,0 +1,4 @@
const fileInput = document.getElementById("file-upload");
window.addEventListener('paste', e => {
fileInput.files = e.clipboardData.files;
});

@ -68,5 +68,6 @@ authentifizieren
repo
</a>
</footer>
<script src="/static/paste.js" lang="javascript"></script>
</body>
</html>

Loading…
Cancel
Save