aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2023-08-18 13:27:00 +0530
committerGitHub <noreply@github.com>2023-08-18 13:27:00 +0530
commit3ff7d709998fe33f82e6da50d7b3327b076a1039 (patch)
tree7e02d78f3449ebe71302d3cd8934ef2373eb8843
parent6c5955ddbb6e94810a6eae8c7e10aa8832bf316d (diff)
downloadcss-everything-3ff7d709998fe33f82e6da50d7b3327b076a1039.tar.gz
css-everything-3ff7d709998fe33f82e6da50d7b3327b076a1039.zip
Update README.md
Diffstat (limited to '')
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index 5a92090..a27d56b 100644
--- a/README.md
+++ b/README.md
@@ -47,7 +47,9 @@ You can start by adding the script tag for the renderer inside the body
#my-button {
--cssx-text: "Click me";
/* On click, waits for 1 second and then updates the --text property #main-el */
- --cssx-on-click: update(main-el, --text, "Loading...") delay(1s)
+ --cssx-on-click:
+ update(main-el, --text, "Loading...")
+ delay(1s)
update(main-el, --text, "Hello world!");
}
```