Resolves issue #229
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
try {
|
||||
var hashParam = location.hash.split("#")[1];
|
||||
var paramName = hashParam.split('=')[0];
|
||||
var paramValue = hashParam.split('=')[1];
|
||||
var paramValue = decodeURIComponent(hashParam.split('=')[1]);
|
||||
document.write("<OPTION value=3>" + paramValue + "</OPTION>");
|
||||
} catch(err) {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user