diff --git a/core-input.html b/core-input.html
index 8dedd44..ca0e62a 100644
--- a/core-input.html
+++ b/core-input.html
@@ -217,7 +217,7 @@
} else if (this.validate.exec) {
valid = this.validate.exec(this.inputValue);
} else if (this.validate instanceof Function) {
- valid = this.validate.call(this.inputValue);
+ valid = this.validate.call(this, this.inputValue);
}
this.invalid = !valid;
},