Repository: airavata-php-gateway Updated Branches: refs/heads/develop ad6398f07 -> 5f132fff4
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/5f132fff Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/5f132fff Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/5f132fff Branch: refs/heads/develop Commit: 5f132fff43b363c786e9f738425e01ffd2915b90 Parents: ad6398f Author: scnakandala <[email protected]> Authored: Mon May 22 16:41:48 2017 -0400 Committer: scnakandala <[email protected]> Committed: Mon May 22 16:41:48 2017 -0400 ---------------------------------------------------------------------- app/views/partials/experiment-queue-block.blade.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/5f132fff/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 e488dd7..aa07755 100644 --- a/app/views/partials/experiment-queue-block.blade.php +++ b/app/views/partials/experiment-queue-block.blade.php @@ -257,8 +257,12 @@ } }); }else{ - cpuCount.onkeyup = null; - nodeCount.onkeyup = null; + cpuCount.keyup(function(){ + return true; + }); + nodeCount.keyup(function(){ + return true; + }); } } }
