mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 12:40:58 +08:00
FIX: Double click on IE11 not highlighting word.
This commit is contained in:
parent
a52d31e25e
commit
273e5c00bb
|
@ -50,7 +50,9 @@ export default Discourse.View.extend({
|
||||||
|
|
||||||
// deselects only when the user left click
|
// deselects only when the user left click
|
||||||
// (allows anyone to `extend` their selection using shift+click)
|
// (allows anyone to `extend` their selection using shift+click)
|
||||||
if (e.which === 1 && !e.shiftKey) controller.deselectText();
|
if (!window.getSelection().isCollapsed &&
|
||||||
|
e.which === 1 &&
|
||||||
|
!e.shiftKey) controller.deselectText();
|
||||||
})
|
})
|
||||||
.on('mouseup.quote-button', function(e) {
|
.on('mouseup.quote-button', function(e) {
|
||||||
view.selectText(e.target, controller);
|
view.selectText(e.target, controller);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user