initialise jot editor if it is used as a file drop target and isn't yet opened.

This commit is contained in:
redmatrix 2016-08-10 19:38:20 -07:00
parent 99c5aca78b
commit 6c672d2575

View file

@ -503,6 +503,7 @@ function enableOnUser(){
// cancel event and hover styling
DragDropUploadFileHover(e);
if (!editor) $("#profile-jot-text").val("");
// fetch FileList object
@ -527,7 +528,11 @@ function enableOnUser(){
xhr.addEventListener('load', function (e) {
//console.log('xhr upload complete', e);
window.fileUploadsCompleted = window.fileUploadsCompleted + 1;
addeditortext(xhr.responseText);
initEditor(function() {
addeditortext(xhr.responseText);
});
$('#jot-media').val($('#jot-media').val() + xhr.responseText);
// When all the uploads have completed, refresh the page
if (window.filesToUpload > 0 && window.fileUploadsCompleted === window.filesToUpload) {