Skip to content

Commit

Permalink
update: remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mutantsan committed Jul 8, 2024
1 parent 85e8a15 commit 19d1dec
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion ckanext/charts/assets/js/charts-filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ ckan.module("charts-filters", function ($, _) {
url: this.sandbox.url(`/api/utils/charts/get-values`),
data: { "resource_id": this.options.resourceId, "column": column },
success: (options) => {
console.debug(options);
let selectValue = value;

for (let index = 0; index < options.length; index++) {
Expand Down
2 changes: 0 additions & 2 deletions ckanext/charts/assets/js/charts-render-chartjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ ckan.module("charts-render-chartjs", function ($, _) {
window.charts_chartjs.destroy();
}

console.debug(this.options.config);

if (!this.options.config) {
console.error("No configuration provided");
return;
Expand Down
2 changes: 0 additions & 2 deletions ckanext/charts/assets/js/charts-render-plotly.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ ckan.module("charts-render-plotly", function ($, _) {
initialize: function () {
$.proxyAll(this, /_/);

console.debug(this.options.config);

if (!this.options.config) {
console.error("No configuration provided");
return;
Expand Down
2 changes: 0 additions & 2 deletions ckanext/charts/assets/js/charts-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ ckan.module("charts-select", function ($, _) {
config.maxItems = selectEl.getAttribute("maxitems") || null;
}

console.debug(config);

new TomSelect(selectEl, config);
}
};
Expand Down

0 comments on commit 19d1dec

Please sign in to comment.