Skip to content

Commit

Permalink
chore: remove unrequired logs
Browse files Browse the repository at this point in the history
  • Loading branch information
hyyan committed Mar 4, 2020
1 parent 739999b commit 93c4025
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 11 deletions.
8 changes: 1 addition & 7 deletions client/dist/bbj-grid-widget.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/dist/bbj-grid-widget.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/dist/report.html

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions client/src/api/columns.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export function gw_sizeColumnsToFit(id, width) {
const options = gw_getGrid(id).options;
const api = options.api;
const columnsAPI = options.columnApi;
console.log(width)
if (width) columnsAPI.sizeColumnsToFit(Number(width));
else api.sizeColumnsToFit();
}
Expand All @@ -67,7 +66,6 @@ export function gw_sizeColumnsToFit(id, width) {
* @param {Array|null} [columns=null] an array of columns ids to auto size or null to auto size all columns
*/
export function gw_autoSizeColumns(id, skipHeader = false, columns = null) {
console.log({ id, skipHeader, columns });
const options = gw_getGrid(id).options;
const columnsAPI = options.columnApi;

Expand Down

0 comments on commit 93c4025

Please sign in to comment.