Repository: airavata-php-gateway
Updated Branches:
  refs/heads/develop 944c23ba3 -> deb0dc935


fixing bug


Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/deb0dc93
Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/deb0dc93
Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/deb0dc93

Branch: refs/heads/develop
Commit: deb0dc935002af688226f0a09f10fda4b16c748f
Parents: 944c23b
Author: scnakandala <[email protected]>
Authored: Mon May 22 16:25:21 2017 -0400
Committer: scnakandala <[email protected]>
Committed: Mon May 22 16:25:21 2017 -0400

----------------------------------------------------------------------
 app/views/partials/experiment-queue-block.blade.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/deb0dc93/app/views/partials/experiment-queue-block.blade.php
----------------------------------------------------------------------
diff --git a/app/views/partials/experiment-queue-block.blade.php 
b/app/views/partials/experiment-queue-block.blade.php
index 7a6e578..6b9580f 100644
--- a/app/views/partials/experiment-queue-block.blade.php
+++ b/app/views/partials/experiment-queue-block.blade.php
@@ -257,8 +257,8 @@
                 var nodeCount=$("#node-count");
                 var cpuCount=$("#cpu-count");
                 if(cpusPerNode > 0){
-                    nodeCount.keyup(nodeCountOnKeyUp(nodeCount, cpuCount, 
cpusPerNode));
-                    cpuCount.keyup(cpuCountOnKeyUp(nodeCount, cpuCount, 
cpusPerNode));
+                    nodeCount.bind('keyup', nodeCountOnKeyUp(nodeCount, 
cpuCount, cpusPerNode));
+                    cpuCount.bind('keyup', cpuCountOnKeyUp(nodeCount, 
cpuCount, cpusPerNode));
                 }else{
                     nodeCount.unbind('keyup', nodeCountOnKeyUp);
                     cpuCount.unbind('keyup', cpuCountOnKeyUp);

Reply via email to