#651810 by Kiphaas7: Fixed can't re-click same tab to re-load its contents.

merge-requests/26/head
Angie Byron 2010-01-13 05:10:46 +00:00
parent c33d0f7be8
commit 5d2cdb6ba9
1 changed files with 6 additions and 0 deletions

View File

@ -365,6 +365,12 @@ Drupal.overlay.redirect = function (link) {
var absolute = location.href.match(/https?:\/\/[^\/]*/)[0];
link = absolute + link;
}
// If the link is already open, force the haschange event.
if (location.href == link) {
$(window).trigger('hashchange.overlay-event');
}
location.href = link;
return true;
};