You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by js...@apache.org on 2008/06/01 05:32:44 UTC

svn commit: r662139 - /incubator/tuscany/java/sca/modules/domain-manager/src/main/resources/cloud.html

Author: jsdelfino
Date: Sat May 31 20:32:44 2008
New Revision: 662139

URL: http://svn.apache.org/viewvc?rev=662139&view=rev
Log:
Uncheck nodes after they have been started/stopped.

Modified:
    incubator/tuscany/java/sca/modules/domain-manager/src/main/resources/cloud.html

Modified: incubator/tuscany/java/sca/modules/domain-manager/src/main/resources/cloud.html
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/domain-manager/src/main/resources/cloud.html?rev=662139&r1=662138&r2=662139&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/domain-manager/src/main/resources/cloud.html (original)
+++ incubator/tuscany/java/sca/modules/domain-manager/src/main/resources/cloud.html Sat May 31 20:32:44 2008
@@ -215,6 +215,7 @@
 	function startNodeResponse() {
 		processCollection.get("", getProcessesResponse);
 		
+		var composites  = array(document.cloudCompositeForm.composites);
 		for (var i = 0; i < composites.length; i++) {
 			if (composites[i].checked) {
 			  composites[i].checked = false;
@@ -235,6 +236,7 @@
 	function stopNodeResponse() {
 		processCollection.get("", getProcessesResponse);
 		
+		var composites  = array(document.cloudCompositeForm.composites);
 		for (var i = 0; i < composites.length; i++) {
 			if (composites[i].checked) {
 			  composites[i].checked = false;