Merge pull request #421 from joplaal/master

Empty check checkValidity null protection
This commit is contained in:
Fez Vrasta 2015-02-18 15:07:10 +01:00
commit 5dd480e408

View File

@ -111,7 +111,7 @@
}) })
.on("keyup change", ".form-control", function() { .on("keyup change", ".form-control", function() {
var $this = $(this); var $this = $(this);
if($this.val() === "" && $this[0].checkValidity()) { if ($this.val() === "" && (typeof $this[0].checkValidity != "undefined" && $this[0].checkValidity())) {
$this.addClass("empty"); $this.addClass("empty");
} else { } else {
$this.removeClass("empty"); $this.removeClass("empty");