mirror of
https://github.com/immich-app/immich
synced 2026-08-22 13:13:05 +00:00
Remove console.log statements
This commit is contained in:
parent
211d7cbd8a
commit
e128fb204a
2 changed files with 0 additions and 6 deletions
|
|
@ -202,7 +202,6 @@
|
|||
|
||||
// $effect(() => {
|
||||
// if (assetViewerManager.zoom > 1 && status.quality.original !== 'success') {
|
||||
// //console.log('effect trigger original');
|
||||
// //untrack(() => void adaptiveImageLoader.trigger('original'));
|
||||
// }
|
||||
// });
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue