hash: decodeURIComponent bug
This commit is contained in:
parent
edd5185f49
commit
84cad4820e
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue