Created
January 11, 2016 19:02
-
-
Save odoe/7ab9a1da47167cb13bf7 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
| const changeZoom$ = DOM.select('#zoom') | |
| .events('input') | |
| .map(({ target }) => target.value) | |
| .startWith(4) | |
| .map(value => { | |
| view.zoom = value; | |
| return value; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment