We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b141b59 commit 65042feCopy full SHA for 65042fe
1 file changed
HTMLCS.Util.js
@@ -1111,8 +1111,7 @@ _global.HTMLCS.util = function() {
1111
if (thisCell.nodeType === 1) {
1112
// Skip columns that are skipped due to rowspan.
1113
if (skipCells[rownum]) {
1114
- while (skipCells[rownum][0] === colnum) {
1115
- skipCells[rownum].shift();
+ while (skipCells[rownum][colnum]) {
1116
colnum++;
1117
}
1118
@@ -1130,7 +1129,7 @@ _global.HTMLCS.util = function() {
1130
1129
1131
1132
for (var j = colnum; j < colnum + colspan; j++) {
1133
- skipCells[i].push(j);
+ skipCells[i][j] = true;
1134
1135
1136
0 commit comments