You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2011/04/17 00:47:30 UTC

svn commit: r1094081 - /couchdb/branches/1.1.x/share/www/script/jquery.couch.js

Author: jan
Date: Sat Apr 16 22:47:30 2011
New Revision: 1094081

URL: http://svn.apache.org/viewvc?rev=1094081&view=rev
Log:
fix reference

Modified:
    couchdb/branches/1.1.x/share/www/script/jquery.couch.js

Modified: couchdb/branches/1.1.x/share/www/script/jquery.couch.js
URL: http://svn.apache.org/viewvc/couchdb/branches/1.1.x/share/www/script/jquery.couch.js?rev=1094081&r1=1094080&r2=1094081&view=diff
==============================================================================
--- couchdb/branches/1.1.x/share/www/script/jquery.couch.js [utf-8] (original)
+++ couchdb/branches/1.1.x/share/www/script/jquery.couch.js [utf-8] Sat Apr 16 22:47:30 2011
@@ -96,7 +96,7 @@
     signup: function(user_doc, password, options) {      
       options = options || {};
       // prepare user doc based on name and password
-      user_doc = prepareUserDoc(user_doc, password);
+      user_doc = this.prepareUserDoc(user_doc, password);
       $.couch.userDb(function(db) {
         db.saveDoc(user_doc, options);
       });