Fix variable change error.

This commit is contained in:
Bryce Curtis 2010-10-18 16:02:42 -05:00
parent de23753204
commit 60fc61065e

View File

@ -190,7 +190,7 @@ var Contacts = function() {
* @return array of Contacts matching search criteria * @return array of Contacts matching search criteria
*/ */
Contacts.prototype.find = function(fields, successCB, errorCB, options) { Contacts.prototype.find = function(fields, successCB, errorCB, options) {
PhoneGap.execAsync(win, fail, "Contacts", "search", [fields, options]); PhoneGap.execAsync(successCB, errorCB, "Contacts", "search", [fields, options]);
}; };
/** /**