Commit ef99b5e8 authored by Kushal Pandya's avatar Kushal Pandya

Use plain JS within `clickTab`, make comment more concise

parent f9c23de6
...@@ -102,10 +102,16 @@ require('./flash'); ...@@ -102,10 +102,16 @@ require('./flash');
} }
clickTab(e) { clickTab(e) {
const targetLink = $(e.target).attr('href'); if (e.target) {
if (e.metaKey || e.ctrlKey || e.which === 2) { const targetLink = e.target.getAttribute('href');
e.stopImmediatePropagation(); // Allow following special clicks to make link open in new tab
window.open(targetLink, '_blank'); // 1) Cmd + Click on Mac (e.metaKey)
// 2) Ctrl + Click on PC (e.ctrlKey)
// 3) Middle-click or Mouse Wheel Click (e.which is 2)
if (e.metaKey || e.ctrlKey || e.which === 2) {
e.stopImmediatePropagation();
window.open(targetLink, '_blank');
}
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment