This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Shift + Click is not handled #9904
Closed
Description
Hello!
As I know browsers open links in a new window, when clicking on them with a 'Shift + Click'. But Angular prevents this, and open link in a current tab(window). This can be observed on main angular website.
As I see the issue is in a $locationProvider
if (!html5Mode.rewriteLinks || event.ctrlKey || event.metaKey || event.which == 2) return;
it seems to me that it is missing event.shiftKey
Can you advise, it this a really miss or a default behavior?
Thank You!