mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 02:40:53 -06:00
FIX: makes mouse events passive (#21441)
This commit is contained in:
parent
9c39053d6f
commit
3bc5c0ad18
@ -14,9 +14,9 @@
|
||||
{{on "touchmove" this.handleTouchMove passive=true}}
|
||||
{{on "touchstart" this.handleTouchStart passive=true}}
|
||||
{{on "touchend" this.handleTouchEnd passive=true}}
|
||||
{{on "mouseenter" this.onMouseEnter}}
|
||||
{{on "mouseleave" this.onMouseLeave}}
|
||||
{{on "mousemove" this.onMouseMove}}
|
||||
{{on "mouseenter" this.onMouseEnter passive=true}}
|
||||
{{on "mouseleave" this.onMouseLeave passive=true}}
|
||||
{{on "mousemove" this.onMouseMove passive=true}}
|
||||
class={{concat-class
|
||||
"chat-message-container"
|
||||
(if this.pane.selectingMessages "selecting-messages")
|
||||
|
Loading…
Reference in New Issue
Block a user