From cde52a31a5a82634e4552bb804e8b1b453e93bb1 Mon Sep 17 00:00:00 2001 From: Mariusz Jurowicz Date: Mon, 16 Jul 2018 15:03:09 +0200 Subject: [PATCH] #7686 remove throttling from TableDisplay fitVieport method --- js/notebook/src/tableDisplay/dataGrid/DataGridResize.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/notebook/src/tableDisplay/dataGrid/DataGridResize.ts b/js/notebook/src/tableDisplay/dataGrid/DataGridResize.ts index 5eecda46ae..2ae7aa51fe 100644 --- a/js/notebook/src/tableDisplay/dataGrid/DataGridResize.ts +++ b/js/notebook/src/tableDisplay/dataGrid/DataGridResize.ts @@ -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(this.fitVieport, 100, this); + this.fitVieport = this.fitVieport.bind(this); this.installMessageHook(); }