File tree 1 file changed +9
-9
lines changed
platform/features/table/src/controllers
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -544,14 +544,14 @@ define(
544
544
}
545
545
546
546
this . $scope . displayRows = this . filterAndSort ( newRows || [ ] ) ;
547
- this . resize ( newRows ) . then ( function ( ) {
548
- this . setVisibleRows ( ) ;
549
-
550
- var timeOfInterest = this . conductor . timeOfInterest ( ) ;
551
- if ( timeOfInterest ) {
552
- this . setTimeOfInterest ( timeOfInterest ) ;
553
- }
554
- } . bind ( this ) ) ;
547
+ this . resize ( newRows ) . then ( this . setVisibleRows )
548
+ . then ( this . timeout )
549
+ . then ( function ( ) {
550
+ var timeOfInterest = this . conductor . timeOfInterest ( ) ;
551
+ if ( timeOfInterest ) {
552
+ this . setTimeOfInterest ( timeOfInterest ) ;
553
+ }
554
+ } . bind ( this ) ) ;
555
555
556
556
} ;
557
557
@@ -615,7 +615,7 @@ define(
615
615
&& newTOI
616
616
&& this . $scope . displayRows . length > 0 ) {
617
617
var formattedTOI = this . toiFormatter . format ( newTOI ) ;
618
- // searchElement, min, max
618
+ // array, searchElement, min, max
619
619
this . $scope . toiRowIndex = this . binarySearch ( this . $scope . displayRows ,
620
620
formattedTOI , 0 , this . $scope . displayRows . length - 1 ) ;
621
621
this . scrollToRow ( this . $scope . toiRowIndex ) ;
You can’t perform that action at this time.
0 commit comments