Skip to content

Commit 45b6843

Browse files
committed
TEST-bisect server image issue
1 parent aaa3086 commit 45b6843

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/traces/table/plot.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ module.exports = function plot(gd, wrappedTraceHolders) {
164164
})
165165
);
166166

167-
return; // bisect 4
167+
// bisect good 4
168168

169169
// initial rendering: header is rendered first, as it may may have async LaTeX (show header first)
170170
// but blocks are _entered_ the way they are due to painter's algo (header on top)
@@ -689,14 +689,14 @@ function makeDragRow(gd, allTableControlView, optionalMultiplier, optionalPositi
689689
function conditionalPanelRerender(gd, tableControlView, cellsColumnBlock, pages, prevPages, d, revolverIndex) {
690690
var shouldComponentUpdate = pages[revolverIndex] !== prevPages[revolverIndex];
691691
if(shouldComponentUpdate) {
692-
clearTimeout(d.currentRepaint[revolverIndex]);
693-
d.currentRepaint[revolverIndex] = setTimeout(function() {
692+
// clearTimeout(d.currentRepaint[revolverIndex]);
693+
// d.currentRepaint[revolverIndex] = setTimeout(function() {
694694
// setTimeout might lag rendering but yields a smoother scroll, because fast scrolling makes
695695
// some repaints invisible ie. wasteful (DOM work blocks the main thread)
696696
var toRerender = cellsColumnBlock.filter(function(d, i) {return i === revolverIndex && pages[i] !== prevPages[i];});
697697
renderColumnCellTree(gd, tableControlView, toRerender, toRerender);
698698
prevPages[revolverIndex] = pages[revolverIndex];
699-
});
699+
// });
700700
}
701701
}
702702

0 commit comments

Comments
 (0)