mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-23 09:23:48 +01:00
This commit is contained in:
parent
21e86e28a8
commit
216396b84a
@ -407,6 +407,20 @@
|
|||||||
if (e.dataTransfer.files.length > 0) {
|
if (e.dataTransfer.files.length > 0) {
|
||||||
Array.from(e.dataTransfer.files).forEach(this.upload);
|
Array.from(e.dataTransfer.files).forEach(this.upload);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// データ取得
|
||||||
|
const data = e.dataTransfer.getData('text');
|
||||||
|
if (data == null) return false;
|
||||||
|
|
||||||
|
// パース
|
||||||
|
// TODO: Validate JSON
|
||||||
|
const obj = JSON.parse(data);
|
||||||
|
|
||||||
|
// (ドライブの)ファイルだったら
|
||||||
|
if (obj.type == 'file') {
|
||||||
|
this.files.push(obj.file);
|
||||||
|
this.update();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
this.onkeydown = e => {
|
this.onkeydown = e => {
|
||||||
|
Loading…
Reference in New Issue
Block a user