@webqit/oohtml 3.0.1-3 → 3.0.1-4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -690,9 +690,9 @@ Generated item elements are automatically assigned a corresponding index with a
|
|
|
690
690
|
|
|
691
691
|
### Quantum Scripts
|
|
692
692
|
|
|
693
|
-
We often still need to write more serious reactive logic on the UI than a declarative data-binding language can provide. But we shouldn't need to reach for special tooling or some "serious" programming paradigm on top of JavaScript.
|
|
693
|
+
We often still need to write more serious reactive logic on the UI than a declarative data-binding language can provide for. But we shouldn't need to reach for special tooling or some "serious" programming paradigm on top of JavaScript.
|
|
694
694
|
|
|
695
|
-
Here, from the same `<script>` element we write
|
|
695
|
+
Here, from the same `<script>` element we already write, we get a direct upgrade path to reactive programming in just an attribute: `quantum`:
|
|
696
696
|
|
|
697
697
|
```html
|
|
698
698
|
<script quantum>
|
|
@@ -791,7 +791,7 @@ Here, the runtime executes your code in a special execution mode that gets liter
|
|
|
791
791
|
|
|
792
792
|
Now, in each case above, reactivity terminates on script's removal from the DOM. But of course, DOM event handlers bound via `addEventListener()` would still need to be terminated in their own way.
|
|
793
793
|
|
|
794
|
-
|
|
794
|
+
</details>
|
|
795
795
|
|
|
796
796
|
## Data Plumbing
|
|
797
797
|
|