FIX: Incorrect check when no text is selected.
This commit is contained in:
parent
e3f31da861
commit
d127e1179f
|
@ -27,7 +27,7 @@ export default DiscourseController.extend({
|
||||||
|
|
||||||
const selection = window.getSelection();
|
const selection = window.getSelection();
|
||||||
// no selections
|
// no selections
|
||||||
if (selection.rangeCount === 0) return;
|
if (selection.isCollapsed) return;
|
||||||
|
|
||||||
// retrieve the selected range
|
// retrieve the selected range
|
||||||
const range = selection.getRangeAt(0),
|
const range = selection.getRangeAt(0),
|
||||||
|
|
Loading…
Reference in New Issue