Skip to content

Commit 01f9e84

Browse files
committed
Merge branch 'master' of git://github.com/dbFlower/CommentCoreLibrary into dbFlower-master
2 parents 50925d6 + 6150321 commit 01f9e84

3 files changed

Lines changed: 15 additions & 11 deletions

File tree

build/CommentCoreLibrary.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ function CommentFilter(){
667667
* Comment Core Library CommentManager
668668
* @license MIT
669669
* @author Jim Chen
670-
*
670+
*
671671
* Copyright (c) 2014 Jim Chen
672672
*/
673673
var CommentManager = (function() {
@@ -692,7 +692,7 @@ var CommentManager = (function() {
692692
}
693693
return "matrix3d(" + matrix.join(",") + ")";
694694
};
695-
695+
696696
function CommentManager(stageObject){
697697
var __timer = 0;
698698
this._listeners = {};
@@ -839,15 +839,17 @@ var CommentManager = (function() {
839839
}
840840
for(;this.position < this.timeline.length;this.position++){
841841
if(this.options.limit > 0 && this.runline.length > this.limiter) break;
842-
if(this.validate(this.timeline[this.position]) && this.timeline[this.position]['stime']<=time){
843-
this.send(this.timeline[this.position]);
842+
if(this.timeline[this.position]['stime']<=time){
843+
if(this.validate(this.timeline[this.position])){
844+
this.send(this.timeline[this.position]);
845+
}
844846
}else{
845847
break;
846848
}
847849
}
848850
};
849851
CommentManager.prototype.rescale = function(){
850-
852+
851853
};
852854
CommentManager.prototype.send = function(data){
853855
if(data.mode === 8){

0 commit comments

Comments
 (0)