You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
868 B
23 lines
868 B
import Rx, { Observable } from 'rxjs';
|
|
import Animation1 from './animation1';
|
|
import Animation2 from './animation2';
|
|
|
|
require('../css/index.scss');
|
|
require('../css/reset.scss');
|
|
|
|
Animation2.init();
|
|
|
|
|
|
// TODO ANIM2 clicking several times on seahorse creates jumpiness
|
|
// TODO display file contents in page
|
|
// TODO adding core UI breaks bounds
|
|
//
|
|
// TODO PR: https://github.com/ReactiveX/rxjs/blob/master/doc/decision-tree-widget/tree.yml#L122 "...time past since the last..."
|
|
//
|
|
// INTERMEDIATE TOPICS
|
|
// === I have one existing Observable and
|
|
// I want to group the values based on another Observable for opening a group, and an Observable for closing a group...
|
|
// I want to start a new Observable for each value...
|
|
// I want to wrap its messages with metadata...
|
|
// I want to share a subscription between multiple subscribers...
|
|
// I want to change the scheduler...
|
|
|