Skip to content

Commit 4772f6e

Browse files
committed
Remove some debug messages
1 parent 7ac6d00 commit 4772f6e

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

histomicsui/web_client/panels/DrawWidget.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,6 @@ var DrawWidget = Panel.extend({
790790
} else if (change !== 0) {
791791
const span = ($('.h-group-count-option:first span.h-group-count-select')[0] || {}).outerHTML || '';
792792
const newrecord = '<div class="h-group-count-option" data-group="' + groupName + '" data-count=' + change + '><span class="h-group-count-value">' + change + ' ' + groupName + '</span>' + span + '</div>';
793-
console.log(newrecord);
794793
for (const group of $('.h-group-count-option').toArray().reverse()) {
795794
if ($(group).attr('data-count') > change || ($(group).attr('data-count') === change && $(group).attr('data-group') < groupName)) {
796795
$(group).after(newrecord);

histomicsui/web_client/views/searchResultsView.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ function addResourcePaths(v) {
2626
if (resources !== JSON.stringify(payload)) {
2727
return;
2828
}
29-
console.log(payload, resp);
3029
v._results.forEach((doc, idx) => {
3130
$(v.$el.find('.g-search-result')[idx]).append($('<span class="g-hui-search-result-resource-path">').text(resp[v._type][doc._id]));
3231
});

0 commit comments

Comments
 (0)