Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jabbany committed May 13, 2016
1 parent 1616657 commit 335124a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/CommentCoreLibrary.js
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ var CommentManager = (function() {
};
CommentManager.prototype.time = function(time){
time = time - 1;
if(this.position >= this.timeline.length || Math.abs(this.lastPosition - time) >= 2000){
if(this.position >= this.timeline.length || Math.abs(this._lastPosition - time) >= 2000){
this.seek(time);
this._lastPosition = time;
if(this.timeline.length <= this.position) {
Expand Down
Loading

0 comments on commit 335124a

Please sign in to comment.