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)
Thu, Nov 14, 12:14 AM
Unknown Object (File)
Thu, Nov 14, 12:07 AM
Unknown Object (File)
Oct 20 2024, 8:19 AM
Unknown Object (File)
Oct 14 2024, 10:22 PM
Unknown Object (File)
Oct 9 2024, 10:45 AM
Unknown Object (File)
Oct 2 2024, 3:55 AM
Unknown Object (File)
Sep 6 2024, 4:27 AM
Unknown Object (File)
Aug 18 2024, 6:33 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.