aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/jot-header.tpl
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-07-20 10:42:16 +0200
committerMario Vavti <mario@mariovavti.com>2018-07-20 10:42:16 +0200
commitc72f6e6ea8d363c43de27760a2374230ce521606 (patch)
treee94253df72dd6a4a95a819c1d42d68bfa4f15868 /view/tpl/jot-header.tpl
parenta94c9d270906136f69156c0e7c0bd2c8a2e63d1a (diff)
downloadvolse-hubzilla-c72f6e6ea8d363c43de27760a2374230ce521606.tar.gz
volse-hubzilla-c72f6e6ea8d363c43de27760a2374230ce521606.tar.bz2
volse-hubzilla-c72f6e6ea8d363c43de27760a2374230ce521606.zip
fix jot drag and drop
Diffstat (limited to 'view/tpl/jot-header.tpl')
-rwxr-xr-xview/tpl/jot-header.tpl15
1 files changed, 9 insertions, 6 deletions
diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl
index 365a922f9..cd8e3e97c 100755
--- a/view/tpl/jot-header.tpl
+++ b/view/tpl/jot-header.tpl
@@ -482,10 +482,13 @@ var activeCommentText = '';
}
- // file drag hover
- function DragDropUploadFileHover(e) {
- e.target.className = (e.type == "dragover" ? "hover" : "");
- }
+ // file drag hover
+ function DragDropUploadFileHover(e) {
+ if(e.type == 'dragover')
+ $(e.target).addClass('hover');
+ else
+ $(e.target).removeClass('hover');
+ }
// file selection
function DragDropUploadFileSelectHandler(e) {
@@ -494,7 +497,7 @@ var activeCommentText = '';
DragDropUploadFileHover(e);
// open editor if it isn't yet initialised
if (!editor) {
- initEditor();
+ enableOnUser();
}
linkdrop(e);
@@ -586,7 +589,7 @@ $( document ).on( "click", ".wall-item-delete-link,.page-delete-link,.layout-del
openEditor = true;
}
if(openEditor) {
- initEditor();
+ enableOnUser();
}
} else {
postSaveChanges('clean');