]> BookStack Code Mirror - bookstack/blobdiff - resources/js/wysiwyg/plugins-tasklist.js
New translations editor.php (Italian)
[bookstack] / resources / js / wysiwyg / plugins-tasklist.js
index 2dd6528e12d8b7b2816663c26d414e69d253b260..5b0e1c1f046563d8a0ff652d81e23df4a6775fbe 100644 (file)
@@ -84,9 +84,10 @@ function register(editor, url) {
 
     // Handle checkbox click in editor
     editor.on('click', function(event) {
-        const clickedEl = event.originalTarget;
+        const clickedEl = event.target;
         if (clickedEl.nodeName === 'LI' && clickedEl.classList.contains('task-list-item')) {
             handleTaskListItemClick(event, clickedEl, editor);
+            event.preventDefault();
         }
     });
 }