Skip to content

Commit

Permalink
title
Browse files Browse the repository at this point in the history
  • Loading branch information
douglascrockford committed May 16, 2018
1 parent b793d5d commit b03ee30
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions browser.js
@@ -1,5 +1,5 @@
// browser.js
// 2018-05-14
// 2018-05-16
// Copyright (c) 2015 Douglas Crockford (www.JSLint.com)

/*jslint
Expand All @@ -8,9 +8,8 @@

/*property
checked, create, disable, display, error, focus, forEach, function,
getElementById, innerHTML, join, length, map, name, onchange, onclick,
onscroll, property, querySelectorAll, scrollTop, select, split, style,
value
getElementById, innerHTML, join, length, map, onchange, onclick, onscroll,
property, querySelectorAll, scrollTop, select, split, style, title, value
*/

import jslint from "./jslint.js";
Expand Down Expand Up @@ -77,7 +76,7 @@ function call_jslint() {
let option = Object.create(null);
boxes.forEach(function (node) {
if (node.checked) {
option[node.name] = true;
option[node.title] = true;
}
});

Expand Down

0 comments on commit b03ee30

Please sign in to comment.