Skip to content

Commit

Permalink
Removing a white space. :)
Browse files Browse the repository at this point in the history
  • Loading branch information
Redian Ibra committed Apr 12, 2013
1 parent 0375933 commit bcefc63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/H5F.js
Expand Up @@ -265,7 +265,7 @@ var H5F = H5F || {};
var placeholder = el.getAttribute("placeholder"),
specialTypes = /^(checkbox|radio)$/i,
isRequired = !!(el.attributes["required"]);
return !!(isRequired && (el.value === "" || el.value === placeholder || (specialTypes.test(el.type) && ! isSiblingChecked(el))));
return !!(isRequired && (el.value === "" || el.value === placeholder || (specialTypes.test(el.type) && !isSiblingChecked(el))));
};

/* Util methods */
Expand Down

0 comments on commit bcefc63

Please sign in to comment.