1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-27 08:12:47 +01:00

Fix Dropzone per readonly

This commit is contained in:
Dasc3er 2020-11-20 16:31:16 +01:00
parent 4a428ac9c3
commit f032b4a381

View File

@ -229,7 +229,12 @@ class FileManager implements ManagerInterface
Dropzone.autoDiscover = false;
$(document).ready(function() {
var dragdrop = new Dropzone("#'.$attachment_id.' .dropzone", {
let dropzone_id = "#'.$attachment_id.' .dropzone";
if ($(dropzone_id).length == 0) {
return;
}
let dragdrop = new Dropzone(dropzone_id, {
dictDefaultMessage: "'.tr('Clicca o trascina qui per caricare uno o più file').'.<br>('.tr('Max upload: _SIZE_', [
'_SIZE_' => $upload_max_filesize.' MB',
]).')",