- Calendar form doesn't have a dropzone nor link preview capability
// 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();
+ }
}
});
}