mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
fix Dropzone.js integration (#7445)
This commit is contained in:
parent
a23e19226a
commit
831288cc91
@ -10,6 +10,9 @@ function htmlEncode(text) {
|
|||||||
var csrf;
|
var csrf;
|
||||||
var suburl;
|
var suburl;
|
||||||
|
|
||||||
|
// Disable Dropzone auto-discover because it's manually initialized
|
||||||
|
Dropzone.autoDiscover = false;
|
||||||
|
|
||||||
// Polyfill for IE9+ support (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from)
|
// Polyfill for IE9+ support (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from)
|
||||||
if (!Array.from) {
|
if (!Array.from) {
|
||||||
Array.from = (function () {
|
Array.from = (function () {
|
||||||
@ -2005,13 +2008,11 @@ $(document).ready(function () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Dropzone
|
// Dropzone
|
||||||
var $dropzone = $('#dropzone');
|
const $dropzone = $('#dropzone');
|
||||||
if ($dropzone.length > 0) {
|
if ($dropzone.length > 0) {
|
||||||
// Disable auto discover for all elements:
|
const filenameDict = {};
|
||||||
Dropzone.autoDiscover = false;
|
|
||||||
|
|
||||||
var filenameDict = {};
|
new Dropzone("#dropzone", {
|
||||||
$dropzone.dropzone({
|
|
||||||
url: $dropzone.data('upload-url'),
|
url: $dropzone.data('upload-url'),
|
||||||
headers: {"X-Csrf-Token": csrf},
|
headers: {"X-Csrf-Token": csrf},
|
||||||
maxFiles: $dropzone.data('max-file'),
|
maxFiles: $dropzone.data('max-file'),
|
||||||
@ -2039,7 +2040,7 @@ $(document).ready(function () {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user