1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2025-12-15 05:43:45 +01:00

🐛 renaming fixes

This commit is contained in:
2023-11-24 20:51:39 +01:00
parent 58b73dcbc7
commit 3bbcb0eff7
6 changed files with 36 additions and 36 deletions

View File

@@ -23,7 +23,7 @@ document.body.append(
);
function component({ textContent, className }){
const value= S("onchange");
const value= O("onchange");
return el().append(
el("p", { textContent, className }),
@@ -53,7 +53,7 @@ Another goal is to proceed in the best spirit of functional programming. This in
pure JavaScript (DOM API) and gradually adding auxiliary functions, ranging from “minor” improvements
to the capability of writing complete declarative reactive UI templates.
As a result, any “internal” function (`assign`, `classListDeclarative`, `on`, `dispatchEvent`, …, `S`, …)
As a result, any “internal” function (`assign`, `classListDeclarative`, `on`, `dispatchEvent`, …, `O`, …)
can be used independently, although they are primarily designed for use in combination. This can also,
hopefully, help in integrating the library into existing projects.