Merge pull request #231 from cktricky/fix_dom

Resolves issue #229
This commit is contained in:
Ken Johnson
2016-04-11 09:08:27 -04:00
+1 -1
View File
@@ -7,7 +7,7 @@
try { try {
var hashParam = location.hash.split("#")[1]; var hashParam = location.hash.split("#")[1];
var paramName = hashParam.split('=')[0]; var paramName = hashParam.split('=')[0];
var paramValue = hashParam.split('=')[1]; var paramValue = decodeURIComponent(hashParam.split('=')[1]);
document.write("<OPTION value=3>" + paramValue + "</OPTION>"); document.write("<OPTION value=3>" + paramValue + "</OPTION>");
} catch(err) { } catch(err) {
} }