fix js/native api inconsistency

This commit is contained in:
brianc 2011-08-15 20:57:39 -05:00
parent 293eaf8b0f
commit 24b664efbd

View File

@ -100,11 +100,17 @@ var ctor = function(config) {
//event emitter proxy
var NativeQuery = function(text, values, callback) {
//TODO there are better ways to detect overloads
if(typeof text == 'object') {
this.text = text.text;
this.values = text.values;
this.name = text.name;
this.callback = values;
if(typeof values === 'function') {
this.callback = values;
} else if(typeof values !== 'undefined') {
this.values = values;
this.callback = callback;
}
} else {
this.text = text;
this.values = values;