Browse Source

Fix undefined hash

Denis K 8 years ago
parent
commit
4bc094c2bc
1 changed files with 4 additions and 0 deletions
  1. 4 0
      jet/static/jet/js/src/features/changeform-tabs.js

+ 4 - 0
jet/static/jet/js/src/features/changeform-tabs.js

@@ -13,6 +13,10 @@ ChangeFormTabs.prototype = {
         return $().add($modules).add($inlines);
         return $().add($modules).add($inlines);
     },
     },
     getHashSelector: function(hash) {
     getHashSelector: function(hash) {
+        if (hash == undefined) {
+            return null;
+        }
+
         var result = hash.match(/^(#(\/tab\/(.+)\/)?)?$/i);
         var result = hash.match(/^(#(\/tab\/(.+)\/)?)?$/i);
 
 
         if (result == null) {
         if (result == null) {