Repository: airavata-php-gateway Updated Branches: refs/heads/develop 271ba9e11 -> 9fefa3d48
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/9fefa3d4 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/9fefa3d4 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/9fefa3d4 Branch: refs/heads/develop Commit: 9fefa3d48693bc0bb68e32a87fce9925d834e2f1 Parents: 271ba9e Author: scnakandala <[email protected]> Authored: Mon May 22 15:59:14 2017 -0400 Committer: scnakandala <[email protected]> Committed: Mon May 22 15:59:14 2017 -0400 ---------------------------------------------------------------------- app/views/partials/experiment-queue-block.blade.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/9fefa3d4/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 e48814e..14d17ae 100644 --- a/app/views/partials/experiment-queue-block.blade.php +++ b/app/views/partials/experiment-queue-block.blade.php @@ -258,12 +258,8 @@ } }); }else{ - nodeCount.keyup(function(){ - //doing nothing - }); - cpuCount.keyup(function(){ - //doing nothing - }); + nodeCount.onkeyup = null; + cpuCount.onkeyup = null; } } }
