Account for calendar post edition in editpost()

- Calendar form doesn't have a dropzone nor link preview capability
This commit is contained in:
Hypolite Petovan 2025-01-26 13:34:03 -05:00
parent d9c11bb853
commit f3202b0508

View file

@ -270,11 +270,15 @@ function editpost(url) {
// To make dropzone fileupload work on editing a comment, we need to
// attach a new dropzone to modal
dzFactory.setupDropzone('#jot-text-wrap', 'profile-jot-text');
if ($('#jot-text-wrap').length > 0) {
dzFactory.setupDropzone('#jot-text-wrap', 'profile-jot-text');
}
modal.show();
$("#jot-popup").show();
linkPreview = $("#profile-jot-text").linkPreview();
if ($("#profile-jot-text").length > 0) {
linkPreview = $("#profile-jot-text").linkPreview();
}
}
});
}