Skip to content

Instantly share code, notes, and snippets.

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