diff options
author | Nathan Gass | 2012-03-22 18:23:53 +0000 |
---|---|---|
committer | Nathan Gass | 2012-03-22 18:23:53 +0000 |
commit | 338cda9000356404cf2865d61787607acf67fe98 (patch) | |
tree | 3924b3e2e12a5d5ea3b40890477d5e070498543c /devel-utf8/itjs/state.html | |
parent | e0a89b408041d25b18090bfc3d596627ea930507 (diff) | |
download | itools-338cda9000356404cf2865d61787607acf67fe98.tar.gz itools-338cda9000356404cf2865d61787607acf67fe98.tar.bz2 itools-338cda9000356404cf2865d61787607acf67fe98.zip |
last remains of wrong branch itools/live/devel-utf8 removed
Diffstat (limited to 'devel-utf8/itjs/state.html')
-rw-r--r-- | devel-utf8/itjs/state.html | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/devel-utf8/itjs/state.html b/devel-utf8/itjs/state.html deleted file mode 100644 index 36f36c0..0000000 --- a/devel-utf8/itjs/state.html +++ /dev/null @@ -1,31 +0,0 @@ -<?php header("Cache-Control: max-age=3600"); -return <<<EOF -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> -<html> -<head> -<title></title> -<script type="text/javascript"> -var state_load_attempts = 0; -function state_onload() -{ - if (state_load_attempts < 30) - { - state_load_attempts++; - if (parent.it_state && parent.it_state.ready) - parent.setTimeout(parent.it_state_restore_history, 1); - else - window.setTimeout(state_onload, 90); - } - window[(document.all?'onbeforeunload':'onunload')] = state_onbeforeunload; -} -function state_onbeforeunload() -{ - if (parent.it_state && !parent.it_state.it_state_saved) - parent.it_state.store_state(); -} -</script> -</head> -<body onload="state_onload()"><form action="/itjs/state.html" method="get"><input type="hidden" id="state" name="s" value=""></form></body> -</html> -EOF -?> |