mirror of
https://github.com/friendica/friendica
synced 2025-02-08 17:38:51 +00:00
Account for calendar post edition in editpost()
- Calendar form doesn't have a dropzone nor link preview capability
This commit is contained in:
parent
d9c11bb853
commit
f3202b0508
1 changed files with 6 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue