mirror of
				https://github.com/mdbootstrap/mdb-ui-kit.git
				synced 2025-11-04 18:07:43 +03:00 
			
		
		
		
	Merge pull request #421 from joplaal/master
Empty check checkValidity null protection
This commit is contained in:
		
						commit
						925696bcb3
					
				| 
						 | 
				
			
			@ -111,7 +111,7 @@
 | 
			
		|||
      })
 | 
			
		||||
      .on("keyup change", ".form-control", function() {
 | 
			
		||||
        var $this = $(this);
 | 
			
		||||
        if($this.val() === "" && $this[0].checkValidity()) {
 | 
			
		||||
        if ($this.val() === "" && (typeof $this[0].checkValidity != "undefined" && $this[0].checkValidity())) {
 | 
			
		||||
          $this.addClass("empty");
 | 
			
		||||
        } else {
 | 
			
		||||
          $this.removeClass("empty");
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue
	
	Block a user