This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const orbRelease$ = xs.merge( | |
| domCube.events('mouseout').filter( | |
| ev => ev.target.classList.contains('au-cube') | |
| ), | |
| domCube.events('mouseup'), | |
| domCube.events('touchend') | |
| ).debug(log.pass) | |
| const spin$ = dotTap$.map(tap => point$.endWhen( | |
| // ONLY EMITS ONCE AND COMPLETES, UNLESS xs.merge IS INLINE HERE IT WILL REMAIN INCOMPLETE AND CONTINUE EMITTING |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <reference path="../../typings/angular2/angular2.d.ts" /> | |
| import {Component, View, NgIf, ElementRef} from 'angular2/angular2'; | |
| import {Inject} from 'angular2/di'; | |
| @Component({ | |
| selector: 'foo-component', | |
| injectables: [ElementRef] | |
| }) | |
| @View({ |