Return-Path: X-Original-To: apmail-community-commits-archive@minotaur.apache.org Delivered-To: apmail-community-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3897D18C93 for ; Thu, 18 Feb 2016 18:27:47 +0000 (UTC) Received: (qmail 87156 invoked by uid 500); 18 Feb 2016 18:27:47 -0000 Delivered-To: apmail-community-commits-archive@community.apache.org Received: (qmail 87121 invoked by uid 500); 18 Feb 2016 18:27:47 -0000 Mailing-List: contact commits-help@community.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@community.apache.org Delivered-To: mailing list commits@community.apache.org Received: (qmail 87112 invoked by uid 99); 18 Feb 2016 18:27:47 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Feb 2016 18:27:47 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id BED92C10B7 for ; Thu, 18 Feb 2016 18:27:46 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.994 X-Spam-Level: X-Spam-Status: No, score=0.994 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-0.006] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id 4xyYsBkuDbXK for ; Thu, 18 Feb 2016 18:27:46 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id EFE675FB29 for ; Thu, 18 Feb 2016 18:27:45 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 59347E0113 for ; Thu, 18 Feb 2016 18:27:45 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 536693A0119 for ; Thu, 18 Feb 2016 18:27:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1731108 - /comdev/helpwanted.apache.org/site/js/hw.js Date: Thu, 18 Feb 2016 18:27:45 -0000 To: commits@community.apache.org From: humbedooh@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160218182745.536693A0119@svn01-us-west.apache.org> Author: humbedooh Date: Thu Feb 18 18:27:45 2016 New Revision: 1731108 URL: http://svn.apache.org/viewvc?rev=1731108&view=rev Log: don't go to #hwrtable if in admin area Modified: comdev/helpwanted.apache.org/site/js/hw.js Modified: comdev/helpwanted.apache.org/site/js/hw.js URL: http://svn.apache.org/viewvc/comdev/helpwanted.apache.org/site/js/hw.js?rev=1731108&r1=1731107&r2=1731108&view=diff ============================================================================== --- comdev/helpwanted.apache.org/site/js/hw.js (original) +++ comdev/helpwanted.apache.org/site/js/hw.js Thu Feb 18 18:27:45 2016 @@ -386,7 +386,10 @@ function displayItems(json, state) { } tbl += "" obj.innerHTML += tbl - location.hash = '#hwrtable' + if (location.href.search('admin') == -1) { + location.hash = '#hwrtable' + } + } function fetchItems(languages, types, projects, sortBy) {