Page MenuHomePhabricator

Don't allow the middle mouse button to start an inline comment
ClosedPublic

Authored by epriestley on Nov 24 2018, 3:02 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Mar 26, 7:13 PM
Unknown Object (File)
Tue, Mar 26, 7:13 PM
Unknown Object (File)
Tue, Mar 26, 7:13 PM
Unknown Object (File)
Feb 23 2024, 1:23 PM
Unknown Object (File)
Feb 3 2024, 8:01 PM
Unknown Object (File)
Dec 27 2023, 12:57 PM
Unknown Object (File)
Dec 22 2023, 12:52 AM
Unknown Object (File)
Dec 21 2023, 5:10 PM
Subscribers
None

Details

Summary

Ref T13216. See PHI985. When you click a line number to start an inline comment, we intend to initiate the action only if you used the left mouse button (desktop) or a touch (tablet/device).

We currently have a not right condition for doing this, but it only excludes right clicks, not middle clicks (or other nth-button clicks). The not right condition was sligthly easier to write, but use an is left condition instead of a not right condition.

Test Plan
  • In Safari, Firefox and Chrome:
    • Used left click to start an inline.
    • Used middle click to do nothing (previously: started an inline).

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

epriestley added inline comments.
webroot/rsrc/externals/javelin/core/Event.js
146

I'm not 100% this definition works in old IE, but it's the best guess I could dig up from a few minutes of Googling and we don't really support old IE anyway.

This revision is now accepted and ready to land.Nov 26 2018, 5:18 PM
This revision was automatically updated to reflect the committed changes.