[Jspro-cvs] jsPro/tests array.html,1.1,1.2
Brought to you by:
wigleys
From: <gat...@us...> - 2003-10-27 07:48:26
|
Update of /cvsroot/jspro/jsPro/tests In directory sc8-pr-cvs1:/tmp/cvs-serv2292/tests Modified Files: array.html Log Message: QA: reordered object declarations for consistency across files Index: array.html =================================================================== RCS file: /cvsroot/jspro/jsPro/tests/array.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** array.html 13 Oct 2003 15:31:42 -0000 1.1 --- array.html 27 Oct 2003 07:46:41 -0000 1.2 *************** *** 33,38 **** <script type="text/javascript" src="test.js"></script> <script type="text/javascript"> - var oTest = new Test(); var oDebug = new Debug(); var aSample = new Array(1, 2, 3, 4, 5, 'a', 'b', 'c', 'd', 'e'); aSample['hello'] = 'hesdllo'; --- 33,38 ---- <script type="text/javascript" src="test.js"></script> <script type="text/javascript"> var oDebug = new Debug(); + var oTest = new Test(); var aSample = new Array(1, 2, 3, 4, 5, 'a', 'b', 'c', 'd', 'e'); aSample['hello'] = 'hesdllo'; |