diff --git a/themes/bootstrap3/js/record.js b/themes/bootstrap3/js/record.js
index 6d51bc0476f1b5c54f0e16975e8cc12301a39f56..34749a9f4dc47c29ef5348a7463f8d192102e36e 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();
   }
 }