FIX: Reset `isMouseDown` as long as mouse is up.
This commit is contained in:
parent
8cc64cd05b
commit
02150d77a2
|
@ -54,10 +54,10 @@ export default Ember.Component.extend({
|
||||||
this.sendAction('deselectText');
|
this.sendAction('deselectText');
|
||||||
}
|
}
|
||||||
}).on('mouseup.quote-button', e => {
|
}).on('mouseup.quote-button', e => {
|
||||||
|
this.set('isMouseDown', false);
|
||||||
if (ignoreElements(e)) { return; }
|
if (ignoreElements(e)) { return; }
|
||||||
|
|
||||||
this._selectText(e.target);
|
this._selectText(e.target);
|
||||||
this.set('isMouseDown', false);
|
|
||||||
}).on('selectionchange', () => {
|
}).on('selectionchange', () => {
|
||||||
// there is no need to handle this event when the mouse is down
|
// there is no need to handle this event when the mouse is down
|
||||||
// or if there a touch in progress
|
// or if there a touch in progress
|
||||||
|
|
Loading…
Reference in New Issue