From a2a71a107e2aa5cfb7ab9cfa8c10b41885334160 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 24 Nov 2012 01:36:18 -0600 Subject: [PATCH] Fix `onerror` typo. Former-commit-id: 61ba70537963824f396496cc59e7cfac1e9f8c8a --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index b98960a1f..2cc84e370 100644 --- a/lodash.js +++ b/lodash.js @@ -320,7 +320,7 @@ // http://bugzil.la/804933 window.onerror = function(message) { error = message; - return false; + return true; }; // the newline is required to avoid errors if `body` ends with a single line comment script.text = 'var _ = function(' + args + ') {' + body + '\n}';