add missing semicolons

This commit is contained in:
rolux 2012-05-27 21:33:36 +02:00
parent 2ea1283901
commit 51edb6b82a

View file

@ -190,7 +190,7 @@ Ox.fallback.JSON = (function() {
}).join(',')
);
} else if (type == 'string') {
ret = quote(value)
ret = quote(value);
}
return ret;
}
@ -356,7 +356,7 @@ Ox.fallback.trim = function() {
log = global.console.log;
global.console.log = function() {
log(Array.prototype.slice.call(arguments).join(' '));
}
};
} else if (!global.console.log.apply) {
global.console.log = Function.prototype.bind.call(
global.console.log, global.console