Ctrl click does not work in OS X
![]() ![]() |
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? |

