Skip to content

Commit

Permalink
remove debug console logging
Browse files Browse the repository at this point in the history
  • Loading branch information
olifolkerd committed May 8, 2022
1 parent da619e8 commit 39949ed
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
3 changes: 0 additions & 3 deletions dist/js/tabulator_esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -16665,8 +16665,6 @@ class ResizeColumns extends Module{
reinitializeColumn(column){
var frozenOffset = column.modules.frozen ? (column.modules.frozen.marginValue + column.getWidth() + "px") : false;

console.log("offset", frozenOffset);

column.cells.forEach((cell) => {
if(cell.modules.resize && cell.modules.resize.handleEl){
if(frozenOffset){
Expand Down Expand Up @@ -16731,7 +16729,6 @@ class ResizeColumns extends Module{
});

if(column.modules.frozen){
console.log("froze", column.modules.frozen.marginValue + column.getWidth() + "px");
handle.style.position = "absolute";
handle.style.left = column.modules.frozen.marginValue + column.getWidth() + "px";
}
Expand Down
2 changes: 1 addition & 1 deletion dist/js/tabulator_esm.js.map

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions src/js/modules/ResizeColumns/ResizeColumns.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,6 @@ class ResizeColumns extends Module{
var frozenOffset = column.modules.frozen ? (column.modules.frozen.marginValue + column.getWidth() + "px") : false;
;

console.log("offset", frozenOffset);

column.cells.forEach((cell) => {
if(cell.modules.resize && cell.modules.resize.handleEl){
if(frozenOffset){
Expand Down Expand Up @@ -152,7 +150,6 @@ class ResizeColumns extends Module{
});

if(column.modules.frozen){
console.log("froze", column.modules.frozen.marginValue + column.getWidth() + "px")
handle.style.position = "absolute";
handle.style.left = column.modules.frozen.marginValue + column.getWidth() + "px";
}
Expand Down

0 comments on commit 39949ed

Please sign in to comment.