Created
January 11, 2016 19:06
-
-
Save odoe/3d72af37c9f530724a6d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| return { | |
| DOM: changeZoom$.map(value => | |
| div([ | |
| div([ | |
| 'Zoom Level', | |
| input('#zoom', { type: 'range', min: 1, max: 23, value }) | |
| ]), | |
| h4('Current Zoom: ' + value) | |
| ]) | |
| ) | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment