Skip to content
Snippets Groups Projects
Commit ff8a416e authored by rajaro's avatar rajaro Committed by Robert Lange
Browse files

improve record tab hash handling (#1754)

parent ab165a7f
No related merge requests found
...@@ -250,7 +250,7 @@ function applyRecordTabHash() { ...@@ -250,7 +250,7 @@ function applyRecordTabHash() {
if (newTab.length <= 1 || newTab === '#tabnav') { if (newTab.length <= 1 || newTab === '#tabnav') {
$initiallyActiveTab.click(); $initiallyActiveTab.click();
} else if (newTab.length > 1 && '#' + activeTab !== newTab) { } else if (newTab.length > 1 && '#' + activeTab !== newTab) {
$('.' + newTab.substr(1) + ' a').click(); $('.record-tabs .' + newTab.substr(1) + ' a').click();
} }
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment