This commit is contained in:
Fabian Stamm 2017-06-20 13:56:26 +02:00
parent de4e10becf
commit 65a690ed07
3 changed files with 3 additions and 1 deletions

View File

@ -141,6 +141,7 @@ class Timecode {
ioClient.on("update", (data) => { ioClient.on("update", (data) => {
this.vlcUpdate(data); this.vlcUpdate(data);
}); });
this.playing = false;
} }
else { else {
this.startTime = new Date().getTime(); this.startTime = new Date().getTime();

File diff suppressed because one or more lines are too long

View File

@ -163,6 +163,7 @@ class Timecode {
ioClient.on("update", (data)=>{ ioClient.on("update", (data)=>{
this.vlcUpdate(data); this.vlcUpdate(data);
}) })
this.playing = false;
} else { } else {
this.startTime = new Date().getTime(); this.startTime = new Date().getTime();
this.playing = true; this.playing = true;