Repository: airavata-php-gateway Updated Branches: refs/heads/develop c74dcd0da -> c72500f26
removing the hide part in queue data 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/c72500f2 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/c72500f2 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/c72500f2 Branch: refs/heads/develop Commit: c72500f263cc71006e3fa3d399254952d7f1306e Parents: c74dcd0 Author: scnakandala <[email protected]> Authored: Mon May 22 13:40:43 2017 -0400 Committer: scnakandala <[email protected]> Committed: Mon May 22 13:40:43 2017 -0400 ---------------------------------------------------------------------- app/views/experiment/create-complete.blade.php | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/c72500f2/app/views/experiment/create-complete.blade.php ---------------------------------------------------------------------- diff --git a/app/views/experiment/create-complete.blade.php b/app/views/experiment/create-complete.blade.php index 7f085ca..0ac6bd6 100755 --- a/app/views/experiment/create-complete.blade.php +++ b/app/views/experiment/create-complete.blade.php @@ -93,12 +93,14 @@ $("#compute-resource").change(function () { var crId = $(this).val(); $(".loading-img ").removeClass("hide"); + $(".queue-view ").addClass("hide"); $.ajax({ url: '../experiment/getQueueView', type: 'get', data: {crId: crId}, success: function (data) { $(".queue-view").html(data); + $(".queue-view ").removeClass("hide"); $(".loading-img ").addClass("hide"); } });
