You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by "Stéphane Alnet (JIRA)" <ji...@apache.org> on 2012/05/01 14:19:49 UTC

[jira] [Created] (COUCHDB-1474) jquery.couch.js: cleanup assignment for user_doc.type

Stéphane Alnet created COUCHDB-1474:
---------------------------------------

             Summary: jquery.couch.js: cleanup assignment for user_doc.type
                 Key: COUCHDB-1474
                 URL: https://issues.apache.org/jira/browse/COUCHDB-1474
             Project: CouchDB
          Issue Type: Improvement
          Components: Futon
    Affects Versions: 1.2
         Environment: Debian/testing
            Reporter: Stéphane Alnet
            Priority: Trivial
             Fix For: 1.2.1


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.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira