From 51edb6b82a1186458eac231ab58fdcef035648c4 Mon Sep 17 00:00:00 2001 From: rolux Date: Sun, 27 May 2012 21:33:36 +0200 Subject: [PATCH] add missing semicolons --- source/Ox/js/Fallback.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Ox/js/Fallback.js b/source/Ox/js/Fallback.js index 9002cc59..0fb929a0 100644 --- a/source/Ox/js/Fallback.js +++ b/source/Ox/js/Fallback.js @@ -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