Skip to content

Commit

Permalink
Merge pull request #4 from armorik83/feature/hoge
Browse files Browse the repository at this point in the history
no message
  • Loading branch information
yskm-dev authored Jul 30, 2016
2 parents b28cce4 + aac5761 commit 3feb962
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions app/midiAdaputer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import {Injectable} from '@angular/core';
import MIDI from './module/MIDI';
import Rx from 'rxjs/Rx';

@Injectable()
class MidiAdaputer {
constructor {
this.midi = new MIDI();
this.subject = new Rx.Subject();
this.subject.subscribe((v) => {

});
}

emit(v) {
this.subject.next(v);
}

}

export class MidiAdaputer;

0 comments on commit 3feb962

Please # to comment.