blob: b06f46ae52b8d0179b7cc7c4597de6c93ce61899 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<html>
<head>
<script>
function hst() {
var search = location.search;
var historyToken = '';
if (search.length > 0)
historyToken = search.substring(1);
document.getElementById('__gwt_historyToken').value = historyToken;
if (parent.__gwt_onHistoryLoad) {
parent.__gwt_onHistoryLoad(historyToken);
}
}
</script></head>
<body onload='hst()'>
<input type='text' id='__gwt_historyToken' tabIndex='-1'>
</body>
</html>
|