diff --git a/chrome/content/zotero/bindings/timedtextarea.xml b/chrome/content/zotero/bindings/timedtextarea.xml index 222cd8e13..f7eb05790 100644 --- a/chrome/content/zotero/bindings/timedtextarea.xml +++ b/chrome/content/zotero/bindings/timedtextarea.xml @@ -116,6 +116,11 @@ // everything is initialized and the editor will fail to create the // inline spell checker object setTimeout(this._delayedInitSpellCheck, 0, this) + + // oninput doesn't seem to fire on text drag + this.inputField.addEventListener('dragdrop', function(event) { + document.getBindingParent(event.target).doInput(); + }, false); ]]> @@ -222,16 +227,25 @@ ]]> + + + + + + - +