Skip to content

Commit

Permalink
#7686 remove throttling from TableDisplay fitVieport method
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariusz Jurowicz committed Jul 16, 2018
1 parent 0065909 commit cde52a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/notebook/src/tableDisplay/dataGrid/DataGridResize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class DataGridResize {
this.handleMouseMove = this.handleMouseMove.bind(this);
this.handleMouseUp = this.handleMouseUp.bind(this);
this.fillEmptySpaceResizeFn = this.fillEmptySpaceResizeFn.bind(this);
this.fitVieport = throttle<void, void>(this.fitVieport, 100, this);
this.fitVieport = this.fitVieport.bind(this);

this.installMessageHook();
}
Expand Down

0 comments on commit cde52a3

Please sign in to comment.