Search and Top Navigation
#10459 closed bug (notabug)
Opened August 03, 2014 04:08PM UTC
Closed August 03, 2014 05:46PM UTC
bug: Tabs: load ajax main page while link to local
Reported by: | 4NcieN2 | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | none |
Component: | ui.tabs | Version: | 1.11.0 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
The problem is in:
_isLocal: (function() {
....
return anchor.hash.length > 1 && anchorUrl ==== locationUrl;
....
When i fix it to
_isLocal: (function() {
....
return anchor.hash.length > 1 && anchorUrl != locationUrl;
....
Then all works fine.
Attachments (0)
Change History (1)
Changed August 03, 2014 05:46PM UTC by comment:1
resolution: | → notabug |
---|---|
status: | new → closed |
This is not a proper bug report and the "fix" is clearly wrong as the URLs not being equal would mean that it is *not* local.