You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting with version 0.7.12 the following snippet fail because < is null in sqlliteplugin.js.
Any other have the same problem?
mycb = function(result) {
var last, q, r, res, type, _i;
last = result.length - 1;
for (i = _i = 0; 0 <= last ? _i <= last : _i >= last; i = 0 <= last ? ++_i : --_i) {
r = result[i];
type = r.type; <<<< r.type is undefined
res = r.result;
q = mycbmap[i];
if (q) {
if (q[type]) {
qtype;
}
}
}
};
The text was updated successfully, but these errors were encountered:
Starting with version 0.7.12 the following snippet fail because < is null in sqlliteplugin.js.
Any other have the same problem?
mycb = function(result) {
var last, q, r, res, type, _i;
last = result.length - 1;
for (i = _i = 0; 0 <= last ? _i <= last : _i >= last; i = 0 <= last ? ++_i : --_i) {
r = result[i];
type = r.type; <<<< r.type is undefined
res = r.result;
q = mycbmap[i];
if (q) {
if (q[type]) {
qtype;
}
}
}
};
The text was updated successfully, but these errors were encountered: