From 58f1ceb51273e04e0bad10e8ce4a823f14d43aef Mon Sep 17 00:00:00 2001 From: MattMo Date: Fri, 28 Oct 2022 08:02:37 -0700 Subject: [PATCH] Renamed variable. --- ignite-template.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ignite-template.js b/ignite-template.js index 3b446aa..46b6cb9 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -1193,7 +1193,7 @@ class IgniteTemplate { } //Invoke any custom constructors. - this._constructors.forEach(c => c(parent, sibling)); + this._constructors.forEach(callback => callback(parent, sibling)); //If our element has not been added to the dom yet, then add it. if (this.element.isConnected == false && this.element.parentElement == null) {