Ctrl click does not work in OS X

in
Subscribe to Ctrl click does not work in OS X 1 post, 1 voice

Daniel Brewer User
FirefoxMacintosh

When you press ctrl click this activates the right mouse button in OS X rather than opening the feed item in a new tab. To fix this I changed:

link.addEventListener('click', function(e) { if (!e.ctrlKey) { previewMouseClick(e); } }, false);

to

link.addEventListener('click', function(e) { if (!e.metaKey) { previewMouseClick(e); } }, false);

Maybe this could be changed conditionally in the script?

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel