Просмотр исходного кода

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

CauseFX 3 лет назад
Родитель
Сommit
a9cc53e56d
1 измененных файлов с 1 добавлено и 1 удалено
  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