Fix quickformat early dismisal error

This commit is contained in:
Adomas Venčkauskas 2018-04-20 13:13:20 +03:00 committed by Dan Stillman
parent 387109c1da
commit 390b8b2c86

View File

@ -179,6 +179,7 @@ var Zotero_QuickFormat = new function () {
*/
function _getCurrentEditorTextNode() {
var selection = qfiWindow.getSelection();
if (!selection) return false;
var range = selection.getRangeAt(0);
var node = range.startContainer;