diff --git a/ignite-html-validate.js b/ignite-html-validate.js index a10232a..2465f6a 100644 --- a/ignite-html-validate.js +++ b/ignite-html-validate.js @@ -149,15 +149,6 @@ IgniteTemplate.prototype.validate = function (callback) { //Setup the validators array if it doesn't exist. if (!this._validators) { this._validators = []; - - //Setup an event for change to run the validators. - this.on("change", () => { - for (var i = 0; i < this._validators.length; i++) { - if (!this._validators[i]()) { - return false; - } - } - }); } //Register a new validator