Skip to content
This repository has been archived by the owner on Dec 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #40 from kembuco/master
Browse files Browse the repository at this point in the history
Fix for #39
  • Loading branch information
ansman committed Mar 30, 2015
2 parents a985792 + 9fe86ff commit b44bcf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validate.js
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@
for (i = 0; i < inputs.length; ++i) {
input = inputs.item(i);

if (input.dataset.ignored !== undefined) {
if (input.getAttribute("data-ignored") !== null) {
continue;
}

Expand Down

0 comments on commit b44bcf2

Please sign in to comment.