Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 9AC1720049D for ; Wed, 9 Aug 2017 16:50:08 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9967A16950D; Wed, 9 Aug 2017 14:50:08 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 0AE151694CC for ; Wed, 9 Aug 2017 16:50:04 +0200 (CEST) Received: (qmail 51104 invoked by uid 500); 9 Aug 2017 14:50:03 -0000 Mailing-List: contact commits-help@airavata.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@airavata.apache.org Delivered-To: mailing list commits@airavata.apache.org Received: (qmail 50687 invoked by uid 99); 9 Aug 2017 14:50:03 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Aug 2017 14:50:03 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 315B6F554D; Wed, 9 Aug 2017 14:50:01 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: machristie@apache.org To: commits@airavata.apache.org Date: Wed, 09 Aug 2017 14:50:46 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [47/50] airavata-php-gateway git commit: fixing queue names not updating issue in create app deployment archived-at: Wed, 09 Aug 2017 14:50:08 -0000 fixing queue names not updating issue in create app deployment 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/3ae5f319 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/3ae5f319 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/3ae5f319 Branch: refs/heads/dreg-gateway Commit: 3ae5f319ef75e413ae0c6bda5ee22817aecee92f Parents: e7d1407 Author: scnakandala Authored: Thu Jul 27 12:36:12 2017 -0400 Committer: scnakandala Committed: Thu Jul 27 12:36:12 2017 -0400 ---------------------------------------------------------------------- public/js/deployment.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/3ae5f319/public/js/deployment.js ---------------------------------------------------------------------- diff --git a/public/js/deployment.js b/public/js/deployment.js index 371d619..d0f8649 100644 --- a/public/js/deployment.js +++ b/public/js/deployment.js @@ -71,12 +71,12 @@ $( document).ready( function(){ $(".delete-deploymentId").val( deploymentId ) }); - updateQueueNamesForCreateAppDep($('#create-app-deployment-block .computeHostId').filter(":selected").val()); + updateQueueNamesForCreateAppDep($('#create-app-deployment-block .computeHostId').filter(":first").val()); $("#create-app-deployment-block").on('change', '.computeHostId', function () { updateQueueNamesForCreateAppDep(this.value); }); - updateQueueNamesForEditAppDep($('#edit-app-deployment-block .computeHostId').filter(":selected").val()); + updateQueueNamesForEditAppDep($('#edit-app-deployment-block .computeHostId').filter(":first").val()); $("#edit-app-deployment-block").on('change', '.computeHostId', function () { updateQueueNamesForEditAppDep(this.value); });