From 99a91345353d9ea93ed34579d23f344df9983e3e Mon Sep 17 00:00:00 2001 From: Lenin Compres Date: Tue, 7 Nov 2023 14:43:01 -0500 Subject: [PATCH] Update DOM.js --- DOM.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DOM.js b/DOM.js index 5049b1e..3a4618b 100644 --- a/DOM.js +++ b/DOM.js @@ -1,7 +1,7 @@ /** * Creates DOM structures from a JS object (structure) * @author Lenin Compres - * @version 1.0.46 + * @version 1.0.47 * @repository https://github.com/lenincompres/DOM.js */ @@ -83,7 +83,7 @@ Element.prototype.set = function (model, ...args) { } if (model._bonds) model = model.bind(); if (model.binders) { - model.binders.forEach(binder => binder.bind(this, STATION, model.onvalue, model.listener, ["attribute", "style", "attributes"].includes(station) ? station : undefined)); + model.binders.forEach(binder => binder.bind(this, STATION, model.onvalue, model.listener, ["attribute", "attributes"].includes(station) ? station : undefined)); return this; } if (station === "css") { @@ -431,7 +431,7 @@ class DOM { meta: { "http-equiv": "X-UA-Compatible", content: "IE=edge", - }, + }, }); window.DOM_RESETTED = true; }