Opened 9 years ago
Closed 9 years ago
#10459 closed bug (notabug)
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.
Note: See
TracTickets for help on using
tickets.
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.