[Laszlo-checkins] r3738 - sandbox/frisco/trunk/docs/src/dguide

frisco@openlaszlo.org frisco at openlaszlo.org
Wed Feb 7 21:55:11 PST 2007


Author: frisco
Date: 2007-02-07 21:55:07 -0800 (Wed, 07 Feb 2007)
New Revision: 3738

Modified:
   sandbox/frisco/trunk/docs/src/dguide/testdriven.html
Log:
Change 20070207-laszlosystems-1 by laszlosystems at Frisco-Mini.local on 2007-02-07 21:51:46 PST
    in /Users/laszlosystems/src/svn/openlaszlo/sandbox

Summary: 

New Features:

Bugs Fixed:

Technical Reviewer: (pending)
QA Reviewer: (pending)
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details:
    

Tests:

Modified: sandbox/frisco/trunk/docs/src/dguide/testdriven.html
===================================================================
--- sandbox/frisco/trunk/docs/src/dguide/testdriven.html	2007-02-08 05:52:28 UTC (rev 3737)
+++ sandbox/frisco/trunk/docs/src/dguide/testdriven.html	2007-02-08 05:55:07 UTC (rev 3738)
@@ -400,7 +400,7 @@
 <attribute name="counter" type="number" value="1" when="once"/>
 
 <method event="onclick">
-    if (goButton.go==true &ampamp; goButton.counter<Number.MAX_VALUE) {
+    if (goButton.go==true & & goButton.counter<Number.MAX_VALUE) {
         foo = new LzDelegate(this, "count", LzIdle, "onidle");
         this.setAttribute('text', 'Stop');
         this.setAttribute('go', false);
@@ -457,7 +457,7 @@
 <attribute name="counter" type="number" value="1" when="once"/>
 
 <method event="onclick">
-    if (goButton.go==true &ampamp; goButton.counter<Number.MAX_VALUE) {
+    if (goButton.go==true & & goButton.counter<Number.MAX_VALUE) {
         foo = new LzDelegate(this, "count", LzIdle, "onidle");
         this.setAttribute('text', 'Stop');
         this.setAttribute('go', false);



More information about the Laszlo-checkins mailing list