forked from neri/datatrash
add support for pasting files
This commit is contained in:
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…
Reference in New Issue