diff --git a/docs/src/examples/sequence/BeautifulMath.html b/docs/src/examples/sequence/BeautifulMath.html index d749077d..9ff1035c 100644 --- a/docs/src/examples/sequence/BeautifulMath.html +++ b/docs/src/examples/sequence/BeautifulMath.html @@ -6,8 +6,12 @@

Simple SVG Graphics: Beautiful Math

- -
+
+ 10 + 2 +
+ +

More solutions in TypeScript, PureScript, and Elm.

@@ -72,7 +84,10 @@

Simple SVG Graphics: Beautiful Math

svg.innerHTML = lines; }; draw(); - [tableFactorEl, slicesEl].forEach( el => el.oninput = draw); + [tableFactorEl, slicesEl].forEach( el => el.oninput = () => { + draw(); + el.previousSibling.textContent = el.value; + }); diff --git a/docs/src/examples/sequence/Stairs.html b/docs/src/examples/sequence/Stairs.html index d8f598ba..c5ff4632 100644 --- a/docs/src/examples/sequence/Stairs.html +++ b/docs/src/examples/sequence/Stairs.html @@ -8,6 +8,7 @@