Return-Path: Delivered-To: apmail-myfaces-commits-archive@www.apache.org Received: (qmail 89593 invoked from network); 21 May 2008 14:00:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 May 2008 14:00:14 -0000 Received: (qmail 12246 invoked by uid 500); 21 May 2008 14:00:14 -0000 Delivered-To: apmail-myfaces-commits-archive@myfaces.apache.org Received: (qmail 12190 invoked by uid 500); 21 May 2008 14:00:14 -0000 Mailing-List: contact commits-help@myfaces.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "MyFaces Development" Delivered-To: mailing list commits@myfaces.apache.org Received: (qmail 12175 invoked by uid 99); 21 May 2008 14:00:14 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 May 2008 07:00:14 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 May 2008 13:59:36 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4FF482388A05; Wed, 21 May 2008 06:59:52 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r658690 - /myfaces/tobago/trunk/theme/scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/script/tab.js Date: Wed, 21 May 2008 13:59:52 -0000 To: commits@myfaces.apache.org From: weber@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080521135952.4FF482388A05@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: weber Date: Wed May 21 06:59:51 2008 New Revision: 658690 URL: http://svn.apache.org/viewvc?rev=658690&view=rev Log: fix tabSwitching with mode reloadPage Modified: myfaces/tobago/trunk/theme/scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/script/tab.js Modified: myfaces/tobago/trunk/theme/scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/script/tab.js URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/script/tab.js?rev=658690&r1=658689&r2=658690&view=diff ============================================================================== --- myfaces/tobago/trunk/theme/scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/script/tab.js (original) +++ myfaces/tobago/trunk/theme/scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/script/tab.js Wed May 21 06:59:51 2008 @@ -18,7 +18,7 @@ function tobago_switchTab(type, controlId, selectedIndex, size) { if ('client' == type) { tobago_selectTab(controlId, selectedIndex, size); - } else if ('reloadTab' == type) { + } else if ('reloadPage' == type) { tobago_requestTab(controlId, selectedIndex); } }