Ignore:
Timestamp:
07/01/13 03:34:23 (12 years ago)
Author:
hendrikvanantwerpen
Message:

Fixed deploy script.
Fix for ... in ... complaints by jshint.
Fix a typo.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/src/client/qed-client/store/CouchStore.js

    r468 r472  
    241241
    242242            for ( var opt in queryOpts ) {
    243                 queryOpts[opt] = json.toJson(queryOpts[opt]);
     243                if ( queryOpts.hasOwnProperty(opt) ) {
     244                    queryOpts[opt] = json.toJson(queryOpts[opt]);
     245                }
    244246            }
    245247           
Note: See TracChangeset for help on using the changeset viewer.