diff --git a/test/ol.html b/test/ol.html index 8548676ea3..a2c8d47632 100644 --- a/test/ol.html +++ b/test/ol.html @@ -29,12 +29,12 @@ hostResult = hostRegex.exec(l.href), modeResult = modeRegex.exec(l.href), host = (hostResult && hostResult[1]) - ? hostResult[1] + ? decodeURIComponent(hostResult[1]) : (l.host) ? l.host + ':9810' : 'localhost:9810', mode = (modeResult && modeResult[1]) - ? modeResult[1] + ? decodeURIComponent(modeResult[1]) : 'SIMPLE', // Create the script tag which includes the derived variables from above @@ -89,6 +89,7 @@ +