Return-Path: Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: (qmail 33611 invoked from network); 3 Jul 2010 01:25:39 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 3 Jul 2010 01:25:39 -0000 Received: (qmail 54091 invoked by uid 500); 3 Jul 2010 01:25:39 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 53990 invoked by uid 500); 3 Jul 2010 01:25:38 -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 53983 invoked by uid 99); 3 Jul 2010 01:25:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Jul 2010 01:25:38 +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; Sat, 03 Jul 2010 01:25:35 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 122A523889BB; Sat, 3 Jul 2010 01:24:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r960148 - /couchdb/trunk/share/www/script/jquery.couch.js Date: Sat, 03 Jul 2010 01:24:13 -0000 To: commits@couchdb.apache.org From: jchris@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100703012413.122A523889BB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jchris Date: Sat Jul 3 01:24:12 2010 New Revision: 960148 URL: http://svn.apache.org/viewvc?rev=960148&view=rev Log: fix jquery.couch.js replicate options Modified: couchdb/trunk/share/www/script/jquery.couch.js Modified: couchdb/trunk/share/www/script/jquery.couch.js URL: http://svn.apache.org/viewvc/couchdb/trunk/share/www/script/jquery.couch.js?rev=960148&r1=960147&r2=960148&view=diff ============================================================================== --- couchdb/trunk/share/www/script/jquery.couch.js [utf-8] (original) +++ couchdb/trunk/share/www/script/jquery.couch.js [utf-8] Sat Jul 3 01:24:12 2010 @@ -562,7 +562,7 @@ }, replicate: function(source, target, ajaxOptions, repOpts) { - $.extend(repOpts, {source: source, target: target}); + repOpts = $.extend({source: source, target: target}, repOpts); if (repOpts.continuous) { ajaxOptions.successStatus = 202; }