From 031cb969d7d11e3f64bea93009be3db365bfbf1b Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Fri, 18 Jul 2014 14:15:47 -0700 Subject: Have HTML5 validator ignore `autocomplete="off"` on input[type="checkbox"] Not clear from the spec whether this is invalid per se. But it is the current best known workaround for Firefox's unusual behavior. --- Gruntfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Gruntfile.js') diff --git a/Gruntfile.js b/Gruntfile.js index dd706a8aa..da5b743a0 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -340,7 +340,8 @@ module.exports = function (grunt) { reset: true, relaxerror: [ 'Bad value X-UA-Compatible for attribute http-equiv on element meta.', - 'Element img is missing required attribute src.' + 'Element img is missing required attribute src.', + 'Attribute autocomplete not allowed on element input at this point.' ] }, files: { -- cgit v1.2.3 From 0c03d0c273b3b7be2254f0585c1fd1b8592b629d Mon Sep 17 00:00:00 2001 From: "Michael J." Date: Thu, 31 Jul 2014 10:21:56 +0800 Subject: grunt now watch files in all folders/subfolders --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Gruntfile.js') diff --git a/Gruntfile.js b/Gruntfile.js index da5b743a0..48dcf7fea 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -359,7 +359,7 @@ module.exports = function (grunt) { tasks: ['jshint:test', 'qunit'] }, less: { - files: 'less/*.less', + files: 'less/**/*.less', tasks: 'less' } }, -- cgit v1.2.3