fix routeOnClick() to open already active routes in new tab

This commit is contained in:
Simon Grim 2016-03-23 23:52:53 +05:00
parent b7a8240bbc
commit c7f3c9780b

View File

@ -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);