mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 13:34:08 -08:00
2893fb3804
See the readme.txt file and the comments in the zxing client project for more details, hints and remarks. git-svn-id: https://zxing.googlecode.com/svn/trunk@1116 59b500cc-1b3d-0410-9834-0bbf25fbcc57
30 lines
827 B
HTML
30 lines
827 B
HTML
<html>
|
|
<head>
|
|
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
|
<META HTTP-EQUIV="Expires" CONTENT="-1">
|
|
</head>
|
|
<body>
|
|
<script>
|
|
function processUrl()
|
|
{
|
|
|
|
var pos = url.indexOf("?");
|
|
url = pos != -1 ? url.substr(pos + 1) : "";
|
|
if (!parent._ie_firstload) {
|
|
parent.BrowserHistory.setBrowserURL(url);
|
|
try {
|
|
parent.BrowserHistory.browserURLChange(url);
|
|
} catch(e) { }
|
|
} else {
|
|
parent._ie_firstload = false;
|
|
}
|
|
}
|
|
|
|
var url = document.location.href;
|
|
processUrl();
|
|
document.write(encodeURIComponent(url));
|
|
</script>
|
|
Hidden frame for Browser History support.
|
|
</body>
|
|
</html>
|