Work around chrome bug with the exclamation symbol.
This commit is contained in:
parent
836503156d
commit
f05aab0109
@ -145,6 +145,8 @@
|
||||
hash = hash.substring(1);
|
||||
else if (hash[0] === "/")
|
||||
hash = hash.substring(1);
|
||||
else if (hash.substring(0, 3) === "%21")
|
||||
hash = hash.substring(3);
|
||||
else if (hash[hash.length - 1] === "/")
|
||||
hash = hash.substring(0, hash.length - 1);
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user