Prechádzať zdrojové kódy

fix issue with Tab names after F5 reload (#1885)

CauseFX 3 rokov pred
rodič
commit
a9cc53e56d
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      js/functions.js

+ 1 - 1
js/functions.js

@@ -531,7 +531,7 @@ function cleanHash(hash){
     return hash.replaceAll('%20','-');
 }
 function dirtyHash(hash){
-    hash = hash.replace('-','%20');
+    hash = hash.replaceAll('-','%20');
     return decodeURI(hash);
 }
 // What the hell is this?  I don't remember this lol