Details
-
Improvement
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
1.2
-
None
-
None
-
Debian/testing
Description
The source code for jquery.couch.js in 1.2 and git master contains:
user_doc.type = user_doc.type = "user" || [];
in the signup() method. This code makes little sense; thankfully it is equivalent to the old prepareUserDoc() code:
user_doc.type = "user";
but the extraneous assignment and test should be removed.