hash: decodeURIComponent bug

This commit is contained in:
Miroslav Šedivý 2019-09-03 19:34:01 +02:00
parent edd5185f49
commit 84cad4820e

View file

@ -35,7 +35,7 @@ var posts = {
location.hash.replace(/([a-z]+)\=([^\&]+)/g, function(value){
value = value.split("=");
posts.filter[value[0]] = value[1];
posts.filter[value[0]] = decodeURIComponent(value[1]);
$(".more_posts").show();
});