Skip to content

Instantly share code, notes, and snippets.

@jdjuan
Created February 21, 2018 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdjuan/c9497582469c95ecef6bd6819a413c22 to your computer and use it in GitHub Desktop.
Save jdjuan/c9497582469c95ecef6bd6819a413c22 to your computer and use it in GitHub Desktop.
import { paint } from './canvas.js';
const { fromEvent } = Rx.Observable;
const { takeUntil, mergeMap } = Rx.operators;
const move$ = fromEvent(document, 'mousemove')
const down$ = fromEvent(document, 'mousedown')
const up$ = fromEvent(document, 'mouseup')
const paints$ = down$.pipe(
mergeMap(down => move$)
);
paints$.subscribe(paint);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment