Worked around the applet activation issue

This commit is contained in:
hyung-hwan 2007-11-19 09:38:11 +00:00
parent 3955f789c6
commit 408c28cf9a
2 changed files with 8 additions and 4 deletions

View File

@ -22,8 +22,8 @@ function resize()
height = window.innerHeight - 20;
}
document.awkApplet.width = width - 250;
document.awkApplet.height = height - 80;
document.AseAwkApplet.width = width - 250;
document.AseAwkApplet.height = height - 80;
window.scroll (0, 0);
}
</script>
@ -36,8 +36,7 @@ function resize()
<table cellspacing=3>
<tr>
<td valign=top>
<applet name="awkApplet" code="AseAwkApplet" archive="bin/aseawk.jar" codebase="." width="700" height="550">
</applet>
<script src='AseAwkApplet.js'></script>
</td>
<td valign=top>
<p>

View File

@ -0,0 +1,5 @@
<!--
document.write ('<applet name="AseAwkApplet" code="AseAwkApplet" archive="bin/aseawk.jar" codebase="." width="700" height="550">');
document.write ('</applet>');
-->