Remove console.log statements

This commit is contained in:
Hartley Raabis 2026-08-06 13:24:12 -06:00
parent 211d7cbd8a
commit e128fb204a
2 changed files with 0 additions and 6 deletions

View file

@ -202,7 +202,6 @@
// $effect(() => {
// if (assetViewerManager.zoom > 1 && status.quality.original !== 'success') {
// //console.log('effect trigger original');
// //untrack(() => void adaptiveImageLoader.trigger('original'));
// }
// });

View file

@ -244,15 +244,10 @@
onImageReady={(quality: ImageQuality) => {
visibleImageReady = true;
console.log('onImageReady: ' + quality);
if (quality === 'thumbnail' && $slideshowState === SlideshowState.PlaySlideshow && $slideshowAnimate) {
let randomDirection = getRandomInt(0, 2);
let randomScale = (getRandomInt(50, 200) / 100) * ($slideshowAnimateZoomStrength / 100) + 1;
let duration = $slideshowDelay * 1000 - 600;
console.group('asset: ' + asset.id);
console.log('Direction: ' + randomDirection);
console.log('Scale: ' + randomScale);
console.groupEnd();
if (randomDirection == 1) {
assetViewerManager.animatedZoom(randomScale, duration);
} else if (randomDirection == 2) {