File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 */
673673var 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 ) {
You can’t perform that action at this time.
0 commit comments