Resolves issue #229

This commit is contained in:
cktricky
2016-04-11 09:03:07 -04:00
parent 5b292b19fc
commit 8374026697
+1 -1
View File
@@ -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) {
}