Skip to content

Commit

Permalink
Update DOM.js
Browse files Browse the repository at this point in the history
  • Loading branch information
lenincompres committed Nov 7, 2023
1 parent 1e507f8 commit 99a9134
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DOM.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Creates DOM structures from a JS object (structure)
* @author Lenin Compres <lenincompres@gmail.com>
* @version 1.0.46
* @version 1.0.47
* @repository https://github.com/lenincompres/DOM.js
*/

Expand Down Expand Up @@ -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") {
Expand Down Expand Up @@ -431,7 +431,7 @@ class DOM {
meta: {
"http-equiv": "X-UA-Compatible",
content: "IE=edge",
},
},
});
window.DOM_RESETTED = true;
}
Expand Down

0 comments on commit 99a9134

Please sign in to comment.