Skip to content

Commit 9f3ec3b

Browse files
committed
Fixed issue with scrolling to row after bounds change
1 parent dadca62 commit 9f3ec3b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

platform/features/table/src/controllers/MCTTableController.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -544,14 +544,14 @@ define(
544544
}
545545

546546
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));
555555

556556
};
557557

@@ -615,7 +615,7 @@ define(
615615
&& newTOI
616616
&& this.$scope.displayRows.length > 0) {
617617
var formattedTOI = this.toiFormatter.format(newTOI);
618-
// searchElement, min, max
618+
// array, searchElement, min, max
619619
this.$scope.toiRowIndex = this.binarySearch(this.$scope.displayRows,
620620
formattedTOI, 0, this.$scope.displayRows.length - 1);
621621
this.scrollToRow(this.$scope.toiRowIndex);

0 commit comments

Comments
 (0)