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