Skip to content

Instantly share code, notes, and snippets.

@jdjuan
Created February 21, 2018 15:37
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/634d0b5998937a413834599de8201592 to your computer and use it in GitHub Desktop.
Save jdjuan/634d0b5998937a413834599de8201592 to your computer and use it in GitHub Desktop.
import { paint } from './canvas.js';
const { fromEvent } = Rx.Observable;
const { skipUntil, takeUntil } = Rx.operators;
const move$ = fromEvent(document, 'mousemove');
const down$ = fromEvent(document, 'mousedown')
const up$ = fromEvent(document, 'mouseup')
const paints$ = move$.pipe(
skipUntil(down$),
takeUntil(up$)
);
paints$.subscribe(paint);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment