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)
Sun, Apr 21, 4:12 PM
Unknown Object (File)
Sat, Apr 20, 3:41 PM
Unknown Object (File)
Wed, Apr 17, 3:15 PM
Unknown Object (File)
Thu, Apr 11, 7:24 AM
Unknown Object (File)
Fri, Apr 5, 11:23 PM
Unknown Object (File)
Wed, Apr 3, 7:59 AM
Unknown Object (File)
Thu, Mar 28, 11:05 PM
Unknown Object (File)
Tue, Mar 26, 7:13 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.