www/misc/page3.html [74:80]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
var hashCount = 0;
function changeHash() {
hashCount += 1;
if (hashCount % 1) {
location.hash = hashCount;
} else {
location.replace('#' + hashCount);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
www/misc/page3A.js [28:34]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
var hashCount = 0;
function changeHash() {
hashCount += 1;
if (hashCount % 1) {
location.hash = hashCount;
} else {
location.replace('#' + hashCount);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -