diff options
| -rw-r--r-- | CREDITS.md | 1 | ||||
| -rw-r--r-- | p/scripts/main.js | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/CREDITS.md b/CREDITS.md index 42490cf5d..21dc96728 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -50,6 +50,7 @@ People are sorted by name so please keep this order. * [Damstre](https://github.com/Damstre): [contributions](https://github.com/FreshRSS/FreshRSS/pulls?q=is:pr+author:Damstre) * [danc](https://github.com/danc): [contributions](https://github.com/FreshRSS/FreshRSS/pulls?q=is:pr+author:danc), [Web](http://tintouli.free.fr/) * [Daniel Lo Nigro](https://github.com/Daniel15): [contributions](https://github.com/FreshRSS/FreshRSS/pulls?q=is:pr+author:Daniel15), [Web](https://d.sb/) +* [David Lynch](https://github.com/kemayo): [contributions](https://github.com/FreshRSS/FreshRSS/pulls?q=is:pr+author:kemayo), [Web](http://davidlynch.org/) * [David Souza](https://github.com/araujo0205): [contributions](https://github.com/FreshRSS/FreshRSS/pulls?q=is:pr+author:araujo0205), [Web](http://davidsouza.tech/) * [Dennis Cheng](https://github.com/den13501): [contributions](https://github.com/FreshRSS/FreshRSS/pulls?q=is:pr+author:den13501) * [Django Janny](https://github.com/keltroth): [contributions](https://github.com/FreshRSS/FreshRSS/pulls?q=is:pr+author:keltroth) diff --git a/p/scripts/main.js b/p/scripts/main.js index beabbc6d9..3704be7ab 100644 --- a/p/scripts/main.js +++ b/p/scripts/main.js @@ -1059,8 +1059,8 @@ function init_stream(stream) { } el = ev.target.closest('.item.title > a'); - if (el) { // Allow default control-click behaviour such as open in background-tab - return ev.ctrlKey; + if (el) { // Allow default control/command-click behaviour such as open in background-tab + return ev.ctrlKey || ev.metaKey; } el = ev.target.closest('.flux .content .text a'); |
