Skip to content

Commit aaa3086

Browse files
committed
TEST-bisect server image issue
1 parent 57ba651 commit aaa3086

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/traces/table/plot.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var prepareData = require('./data_preparation_helper');
1919
var splitData = require('./data_split_helpers');
2020

2121
module.exports = function plot(gd, wrappedTraceHolders) {
22-
22+
// 1 bisect good
2323
var table = gd._fullLayout._paper.selectAll('.table')
2424
.data(wrappedTraceHolders.map(function(wrappedTraceHolder) {
2525
var traceHolder = gup.unwrap(wrappedTraceHolder);
@@ -135,6 +135,8 @@ module.exports = function plot(gd, wrappedTraceHolders) {
135135

136136
yColumn.attr('clip-path', function(d) {return 'url(#columnBoundaryClippath_' + d.calcdata.key + '_' + d.specIndex + ')';});
137137

138+
// bisect good 2
139+
138140
var columnBlock = yColumn.selectAll('.columnBlock')
139141
.data(splitData.splitToPanels, gup.keyFun);
140142

@@ -162,11 +164,15 @@ module.exports = function plot(gd, wrappedTraceHolders) {
162164
})
163165
);
164166

167+
return; // bisect 4
168+
165169
// initial rendering: header is rendered first, as it may may have async LaTeX (show header first)
166170
// but blocks are _entered_ the way they are due to painter's algo (header on top)
167171
renderColumnCellTree(gd, tableControlView, columnBlock.filter(headerBlock), columnBlock);
168172
renderColumnCellTree(gd, tableControlView, columnBlock.filter(cellsBlock), columnBlock);
169173

174+
// bisect bad 3
175+
170176
var scrollAreaClip = tableControlView.selectAll('.scrollAreaClip')
171177
.data(gup.repeat, gup.keyFun);
172178

0 commit comments

Comments
 (0)