Skip to content

Commit 335124a

Browse files
committed
Fix typo
1 parent 1616657 commit 335124a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build/CommentCoreLibrary.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ var CommentManager = (function() {
834834
};
835835
CommentManager.prototype.time = function(time){
836836
time = time - 1;
837-
if(this.position >= this.timeline.length || Math.abs(this.lastPosition - time) >= 2000){
837+
if(this.position >= this.timeline.length || Math.abs(this._lastPosition - time) >= 2000){
838838
this.seek(time);
839839
this._lastPosition = time;
840840
if(this.timeline.length <= this.position) {

0 commit comments

Comments
 (0)