mirror of
https://github.com/ZizzyDizzyMC/linx-server.git
synced 2026-01-23 02:14:33 +00:00
Allow to paste images (#153)
dropzone.js doesn't support pasting itself yet, so adding it externally and calling `.addFile()` to upload the pasted image. Fixes #130
This commit is contained in:
parent
5f4f16e08b
commit
6290f408ff
2 changed files with 12 additions and 2 deletions
|
|
@ -102,8 +102,18 @@ Dropzone.options.dropzone = {
|
|||
previewsContainer: "#uploads",
|
||||
parallelUploads: 5,
|
||||
headers: {"Accept": "application/json"},
|
||||
dictDefaultMessage: "Click or Drop file(s)",
|
||||
dictDefaultMessage: "Click or Drop file(s) or Paste image",
|
||||
dictFallbackMessage: ""
|
||||
};
|
||||
|
||||
document.onpaste = function(event) {
|
||||
var items = (event.clipboardData || event.originalEvent.clipboardData).items;
|
||||
for (index in items) {
|
||||
var item = items[index];
|
||||
if (item.kind === "file") {
|
||||
Dropzone.forElement("#dropzone").addFile(item.getAsFile());
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// @end-license
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
</div>
|
||||
|
||||
<div id="dzone" class="dz-default dz-message">
|
||||
<span>Click or Drop file(s)</span>
|
||||
<span>Click or Drop file(s) or Paste image</span>
|
||||
</div>
|
||||
|
||||
<div id="choices">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue