Skip to content

Instantly share code, notes, and snippets.

@odoe
Created January 11, 2016 19:02
Show Gist options
  • Select an option

  • Save odoe/7ab9a1da47167cb13bf7 to your computer and use it in GitHub Desktop.

Select an option

Save odoe/7ab9a1da47167cb13bf7 to your computer and use it in GitHub Desktop.
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