mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-01-27 23:24:26 +00:00
fix routeOnClick() to open already active routes in new tab
This commit is contained in:
parent
b7a8240bbc
commit
c7f3c9780b
@ -937,8 +937,8 @@ function routeOnClick(event) {
|
||||
routeNewTab(event);
|
||||
else {
|
||||
var modal = $(event.target).closest('.modal-wrapper:not(.closed)');
|
||||
if (modal.length) { // killer feature: we minimize current modal before .route opening
|
||||
minimizeModal(modal, true);
|
||||
if (modal.length && window.location.hash !== event.data.route) {
|
||||
minimizeModal(modal, true); // yep, we minimize current modal before .route opening
|
||||
window.location.hash = event.data.route;
|
||||
} else
|
||||
routeNewTab(event);
|
||||
|
Loading…
x
Reference in New Issue
Block a user