Return-Path: Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: (qmail 15978 invoked from network); 2 Jul 2010 17:43:03 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 2 Jul 2010 17:43:03 -0000 Received: (qmail 75475 invoked by uid 500); 2 Jul 2010 17:43:02 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 75387 invoked by uid 500); 2 Jul 2010 17:43:02 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 75380 invoked by uid 99); 2 Jul 2010 17:43:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Jul 2010 17:43:01 +0000 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; Fri, 02 Jul 2010 17:42:59 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id AC8DC23889B6; Fri, 2 Jul 2010 17:42:06 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r960067 - /couchdb/trunk/share/www/script/jquery.editinline.js Date: Fri, 02 Jul 2010 17:42:06 -0000 To: commits@couchdb.apache.org From: jchris@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100702174206.AC8DC23889B6@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jchris Date: Fri Jul 2 17:42:06 2010 New Revision: 960067 URL: http://svn.apache.org/viewvc?rev=960067&view=rev Log: Revert "click to edit config in Futon instead of double click. thanks Aaron Miller" Turns out this has some issues. Getting Futon to work nicely on tap-style mobile browsers will require a deeper look. This reverts commit be39860688e01e0d0749fdbefdd226d790133219. Modified: couchdb/trunk/share/www/script/jquery.editinline.js Modified: couchdb/trunk/share/www/script/jquery.editinline.js URL: http://svn.apache.org/viewvc/couchdb/trunk/share/www/script/jquery.editinline.js?rev=960067&r1=960066&r2=960067&view=diff ============================================================================== --- couchdb/trunk/share/www/script/jquery.editinline.js (original) +++ couchdb/trunk/share/www/script/jquery.editinline.js Fri Jul 2 17:42:06 2010 @@ -90,7 +90,7 @@ allowEmpty: true, acceptLabel: "", cancelLabel: "", - toolTip: "Click to edit", + toolTip: "Double click to edit", acceptOnBlur: true, // callbacks @@ -105,7 +105,7 @@ }, options || {}); return this.each(function() { - $(this).attr("title", options.toolTip).click(function() { + $(this).attr("title", options.toolTip).dblclick(function() { startEditing(this, options); }); });