From 7347d914b60b3aeaf669e95711e7d0e7816c50ab Mon Sep 17 00:00:00 2001 From: Ere Maijala <ere.maijala@helsinki.fi> Date: Tue, 25 Oct 2016 11:14:40 -0400 Subject: [PATCH] Ignore hash as a record tab if its length is <= 1 --- themes/bootstrap3/js/record.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/themes/bootstrap3/js/record.js b/themes/bootstrap3/js/record.js index 6d51bc0476f..34749a9f4dc 100644 --- a/themes/bootstrap3/js/record.js +++ b/themes/bootstrap3/js/record.js @@ -258,10 +258,10 @@ function applyRecordTabHash() { var newTab = typeof window.location.hash !== 'undefined' ? window.location.hash.toLowerCase() : ''; - // Open tag in url hash - if (newTab.length === 0 || newTab === '#tabnav') { + // Open tab in url hash + if (newTab.length <= 1 || newTab === '#tabnav') { $initiallyActiveTab.click(); - } else if (newTab.length > 0 && '#' + activeTab !== newTab) { + } else if (newTab.length > 1 && '#' + activeTab !== newTab) { $('.' + newTab.substr(1)).click(); } } -- GitLab