#651810 by Kiphaas7: Fixed can't re-click same tab to re-load its contents.
parent
c33d0f7be8
commit
5d2cdb6ba9
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue