From bc4bbd0a073185b56c8b551baa33a5f633ee32fa Mon Sep 17 00:00:00 2001 From: Gabriel Schulhof Date: Tue, 25 Feb 2014 10:20:22 +0200 Subject: [PATCH 1/2] Textinput: Remove trailing comma from autogrow Fixes gh-7171 --- js/widgets/forms/autogrow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/widgets/forms/autogrow.js b/js/widgets/forms/autogrow.js index 4983624b4f0..dc97a424a3b 100644 --- a/js/widgets/forms/autogrow.js +++ b/js/widgets/forms/autogrow.js @@ -32,7 +32,7 @@ define( [ "keyup": "_timeout", "change": "_timeout", "input": "_timeout", - "paste": "_timeout", + "paste": "_timeout" }); // Attach to the various you-have-become-visible notifications that the From 79438a493150e3a3cec2294dc2ad6ef016bdaa85 Mon Sep 17 00:00:00 2001 From: Gabriel Schulhof Date: Tue, 25 Feb 2014 10:26:41 +0200 Subject: [PATCH 2/2] Build: Add option "es3" to jshint Closes gh-7173 Fixes gh-7172 --- js/.jshintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/js/.jshintrc b/js/.jshintrc index fb4ad64ab93..3461f73b65f 100644 --- a/js/.jshintrc +++ b/js/.jshintrc @@ -1,4 +1,5 @@ { + "es3": true, "boss": true, "curly": true, "eqeqeq": true,