Return-Path: X-Original-To: apmail-airavata-commits-archive@www.apache.org Delivered-To: apmail-airavata-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D1F1418D9E for ; Tue, 16 Feb 2016 20:02:08 +0000 (UTC) Received: (qmail 45614 invoked by uid 500); 16 Feb 2016 20:02:08 -0000 Delivered-To: apmail-airavata-commits-archive@airavata.apache.org Received: (qmail 45568 invoked by uid 500); 16 Feb 2016 20:02:08 -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 45559 invoked by uid 99); 16 Feb 2016 20:02:08 -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; Tue, 16 Feb 2016 20:02:08 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2C3D6E0534; Tue, 16 Feb 2016 20:02:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ndoshi@apache.org To: commits@airavata.apache.org Message-Id: <2e194f93aa4947b4a9dac9d8c035e2e6@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: airavata-php-gateway git commit: Simplifying deployment name search Date: Tue, 16 Feb 2016 20:02:08 +0000 (UTC) Repository: airavata-php-gateway Updated Branches: refs/heads/develop e1912971d -> cb2e460bf Simplifying deployment name search 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/cb2e460b Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/cb2e460b Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/cb2e460b Branch: refs/heads/develop Commit: cb2e460bfc9ede670776024cad4cf5cb6b084697 Parents: e191297 Author: Nipurn Doshi Authored: Tue Feb 16 15:01:31 2016 -0500 Committer: Nipurn Doshi Committed: Tue Feb 16 15:01:31 2016 -0500 ---------------------------------------------------------------------- public/js/deployment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/cb2e460b/public/js/deployment.js ---------------------------------------------------------------------- diff --git a/public/js/deployment.js b/public/js/deployment.js index 43bac43..375b5a7 100644 --- a/public/js/deployment.js +++ b/public/js/deployment.js @@ -41,7 +41,7 @@ $( document).ready( function(){ children = ($("#accordion").children()); var containing = children.filter(function () { - var regex = new RegExp('\\b' + a, 'i'); + var regex = new RegExp(a, 'i'); return regex.test($('a', this).text()); }).slideDown(); children.not(containing).slideUp();