From 841c9318f3bc8a368224af4931f2f007ff288b0a Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Fri, 5 Apr 2013 15:49:19 +0000 Subject: Remove trailing commas at the ends of initialiser lists. IE 8 and 9 didn't like them, which doesn't matter as such since they won't run these JS puzzles anyway (no TypedArray support) but it hints that other JS implementations might be picky about this too. [originally from svn r9804] --- emcclib.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'emcclib.js') diff --git a/emcclib.js b/emcclib.js index cbdd668..57dd2c4 100644 --- a/emcclib.js +++ b/emcclib.js @@ -747,5 +747,5 @@ mergeInto(LibraryManager.library, { */ js_focus_canvas: function() { onscreen_canvas.focus(); - }, + } }); -- cgit v1.1