Repository: airavata-php-gateway Updated Branches: refs/heads/develop 20ef18aa7 -> 24d5554f3
WIP 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/24d5554f Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/24d5554f Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/24d5554f Branch: refs/heads/develop Commit: 24d5554f3bc8212a32e50d6477fd49d6e75010be Parents: 20ef18a Author: scnakandala <[email protected]> Authored: Mon May 22 15:50:16 2017 -0400 Committer: scnakandala <[email protected]> Committed: Mon May 22 15:50:16 2017 -0400 ---------------------------------------------------------------------- app/views/partials/experiment-queue-block.blade.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/24d5554f/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 1958578..2be1949 100644 --- a/app/views/partials/experiment-queue-block.blade.php +++ b/app/views/partials/experiment-queue-block.blade.php @@ -216,9 +216,9 @@ $(".walltime-count").parent().addClass("hide"); if(queues[i]['defaultWalltime'] > 0) { - $("#walltime-count").val(queues[i]['defaultWalltime']); + $("#wall-time").val(queues[i]['defaultWalltime']); }else{ - $("#walltime-count").val(queueDefaults['wallTimeLimit']); + $("#wall-time").val(queueDefaults['wallTimeLimit']); } //memory-count @@ -239,6 +239,7 @@ }else{ var cpusPerNode = queueDefaults['cpusPerNode']; } + console.log(cpusPerNode); var nodeCount=$("#node-count"); var cpuCount=$("#cpu-count");
