Revert "PERF: stop firing superfluous onSelectionChange"
This reverts commit fa96054acf
.
Sadly this fails a test case, we may have to hunt up all the
parentElements to check for the cooked class to perform the
bypass
This commit is contained in:
parent
fa96054acf
commit
8dccf0521c
|
@ -188,16 +188,10 @@ export default Component.extend({
|
||||||
.on("mouseup.quote-button", () => {
|
.on("mouseup.quote-button", () => {
|
||||||
this._prevSelection = null;
|
this._prevSelection = null;
|
||||||
this._isMouseDown = false;
|
this._isMouseDown = false;
|
||||||
if (document.activeElement === document.body) {
|
|
||||||
onSelectionChanged();
|
onSelectionChanged();
|
||||||
}
|
|
||||||
})
|
})
|
||||||
.on("selectionchange.quote-button", () => {
|
.on("selectionchange.quote-button", () => {
|
||||||
if (
|
if (!this._isMouseDown && !this._reselected) {
|
||||||
!this._isMouseDown &&
|
|
||||||
!this._reselected &&
|
|
||||||
document.activeElement === document.body
|
|
||||||
) {
|
|
||||||
onSelectionChanged();
|
onSelectionChanged();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue