diff options
-rw-r--r-- | ui/ui.tabs.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/ui.tabs.js b/ui/ui.tabs.js index e50ab29be..191ccbb93 100644 --- a/ui/ui.tabs.js +++ b/ui/ui.tabs.js @@ -87,7 +87,9 @@ $.widget("ui.tabs", { // Same consideration applies for an added tab with a fragment identifier // since a[href=#fragment-identifier] does unexpectedly not match. // Thus normalize href attribute... - if (href.split('#')[0] == location.toString().split('#')[0]) { + + if (href.split('#')[0] == location.toString().split('#')[0] || + $('base').length && href.split('#')[0] == $('base')[0].href) { href = a.hash; a.href = href; } |