[Jspro-cvs] jsPro/docs math.html,1.6,1.7
Brought to you by:
wigleys
|
From: <wi...@us...> - 2003-09-12 14:19:49
|
Update of /cvsroot/jspro/jsPro/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv26769
Modified Files:
math.html
Log Message:
new pi calculation method
Index: math.html
===================================================================
RCS file: /cvsroot/jspro/jsPro/docs/math.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** math.html 6 Sep 2003 01:45:56 -0000 1.6
--- math.html 12 Sep 2003 14:19:46 -0000 1.7
***************
*** 34,38 ****
<script type="text/javascript" src="test.js"></script>
<script type="text/javascript">
! var oDebug = new Debug();
var oTest = new Test();
</script>
--- 34,38 ----
<script type="text/javascript" src="test.js"></script>
<script type="text/javascript">
! var debug = new Debug();
var oTest = new Test();
</script>
***************
*** 321,324 ****
--- 321,330 ----
<td><input id="oct2hex" type="button" value="Calculate >" onclick="oTest.evaluateMethod(this, 'Math')"/></td>
<td><input id="oct2hexResult" name="output" type="text" size="30" readonly="readonly"/></td>
+ </tr>
+ <tr>
+ <td>Math.pi()</td>
+ <td><input id="pi1" name="input" type="text" size="5"/></td>
+ <td><input id="pi" type="button" value="Calculate >" onclick="oTest.evaluateMethod(this, 'Math')"/></td>
+ <td><input id="piResult" name="output" type="text" size="30" readonly="readonly"/></td>
</tr>
<tr>
|