Skip to content

Commit

Permalink
delete console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
YukaUU committed Jul 15, 2024
1 parent 2bc6ec9 commit 4d9c558
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion apps/viewer/dataloaders.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ function layersLoader() {
// logs
function loadingLogs() {
$CAMIC.store.findMark($D.params.slideId).then(function(layers) {
console.log('original data', layers);
$D.logs = [...layers.map(covertToVisualization)];
visualizationLayerItems($D.logs);
}).catch(function(error) {
Expand Down
3 changes: 0 additions & 3 deletions apps/viewer/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,6 @@ function initialize() {
layersLoader();
}
}, 100);
console.log('$UI', $UI);
console.log('$D', $D);
}
// setting core functionalities
function initCore() {
Expand Down Expand Up @@ -1622,7 +1620,6 @@ function visualizationLayerItems(data) {
if (d.states) {
for (let i = 0; i < d.geometries.features.length; i++) {
initialZommingData.push(roundToSecondDecimalPlace(d.states.zoom));
console.log(initialZommingData);
}
}
});
Expand Down

0 comments on commit 4d9c558

Please sign in to comment.