ag-timemachine
Advanced tools
Comparing version 1.0.23 to 1.0.24
{ | ||
"name": "ag-timemachine", | ||
"version": "1.0.23", | ||
"version": "1.0.24", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -144,3 +144,3 @@ import { WebApiProxy, WebStateProxy } from "ag-remote/AgRemoteTypes"; | ||
align(): void; | ||
play: import("vue").Ref<boolean>; | ||
playing: import("vue").Ref<boolean>; | ||
speedup(): void; | ||
@@ -147,0 +147,0 @@ slowdown(): void; |
@@ -18,3 +18,3 @@ "use strict"; | ||
}); | ||
this.play = (0, AgVueWrap_1.ref)(true); | ||
this.playing = (0, AgVueWrap_1.ref)(true); | ||
this.buffer = new TmPlayerBuffer_1.AgTmPlayerBuffer(id, api, state); | ||
@@ -64,3 +64,3 @@ this.cursor = new TmPlayerCursor_1.AgTmPlayerCursor(this.buffer); | ||
this.pollHandle = AgPoll_1.AgPoll.poll(10, function () { | ||
if (!_this.play.value) | ||
if (!_this.playing.value) | ||
return; | ||
@@ -67,0 +67,0 @@ var span = new Date().getTime() - _this.checkpoint.value.time.getTime(); |
68182