Procházet zdrojové kódy

fixed tab names not encoding correctly (#1885)

CauseFX před 3 roky
rodič
revize
afd151f91c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      js/functions.js

+ 1 - 1
js/functions.js

@@ -528,7 +528,7 @@ function cleanClass(string){
 }
 function cleanHash(hash){
     hash = encodeURI(hash);
-    return hash.replace('%20','-');
+    return hash.replaceAll('%20','-');
 }
 function dirtyHash(hash){
     hash = hash.replace('-','%20');