This commit is contained in:
Fabian Stamm 2017-06-20 14:39:17 +02:00
parent 3c37537365
commit c52a8efdfe
4 changed files with 15 additions and 1 deletions

View File

@ -67,5 +67,11 @@
"id": "cc954c0f41e0" "id": "cc954c0f41e0"
} }
] ]
},
"af3f2ed07c21": {
"displayName": "t2",
"file": "t2.mp4",
"id": "af3f2ed07c21",
"triggers": []
} }
} }

View File

@ -177,6 +177,10 @@ class Timecode {
ios.emit("stopped"); ios.emit("stopped");
} }
this.startTime = 0; this.startTime = 0;
ioClient.on("stopped", () => {
this.playing = false;
this.startTime = 0;
});
} }
} }
class TrackEvent { class TrackEvent {

File diff suppressed because one or more lines are too long

View File

@ -199,6 +199,10 @@ class Timecode {
ios.emit("stopped"); ios.emit("stopped");
} }
this.startTime = 0; this.startTime = 0;
ioClient.on("stopped", ()=>{
this.playing = false;
this.startTime = 0;
});
} }
} }