From 32f889968009df9b7e92957e8dff1d680b655fee Mon Sep 17 00:00:00 2001 From: MattMo Date: Fri, 14 Nov 2025 19:28:51 -0800 Subject: [PATCH] Stopped validation from automatically running on change. --- ignite-html-validate.js | 9 --------- 1 file changed, 9 deletions(-) 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