add missing semicolons
This commit is contained in:
parent
2ea1283901
commit
51edb6b82a
1 changed files with 2 additions and 2 deletions
|
@ -190,7 +190,7 @@ Ox.fallback.JSON = (function() {
|
||||||
}).join(',')
|
}).join(',')
|
||||||
);
|
);
|
||||||
} else if (type == 'string') {
|
} else if (type == 'string') {
|
||||||
ret = quote(value)
|
ret = quote(value);
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -356,7 +356,7 @@ Ox.fallback.trim = function() {
|
||||||
log = global.console.log;
|
log = global.console.log;
|
||||||
global.console.log = function() {
|
global.console.log = function() {
|
||||||
log(Array.prototype.slice.call(arguments).join(' '));
|
log(Array.prototype.slice.call(arguments).join(' '));
|
||||||
}
|
};
|
||||||
} else if (!global.console.log.apply) {
|
} else if (!global.console.log.apply) {
|
||||||
global.console.log = Function.prototype.bind.call(
|
global.console.log = Function.prototype.bind.call(
|
||||||
global.console.log, global.console
|
global.console.log, global.console
|
||||||
|
|
Loading…
Reference in a new issue