Fix Return not accepting citation dialog after pasting. Closes #3240
This commit is contained in:
parent
4b16269b7f
commit
b261d10b89
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ var Zotero_QuickFormat = new function () {
|
|||
*/
|
||||
function _getEditorContent(clear) {
|
||||
var node = _getCurrentEditorTextNode();
|
||||
return node ? node.wholeText : false;
|
||||
return node ? node.wholeText.trim() : false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue