Hi This is really more of a semantic issue, but I was wondering whether there was a way to use mixins for Gears objects.
e.g.:
GearsDatabase.prototype.scalar = function(query) {
var rs = this.execute(query);
return rs.isValidRow() ? rs.field(0) : null;
}
In this case, GearsDatabase.prototype comes back as undefined :-(.
Cheers
Chris
