diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..33581b4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +/images/src/* +/images/thumbs/* +!/images/src/.gitkeep +!/images/thumbs/.gitkeep +/images.json diff --git a/index.html b/index.html index a31f05c..b25bb42 100644 --- a/index.html +++ b/index.html @@ -75,7 +75,6 @@ createApp({ imageIndex: -1, imagesToLoad: 0, imagesLoaded: 0, - background: null, } }, methods: { @@ -95,6 +94,8 @@ createApp({ img.onerror = () => { --this.imagesToLoad ++this.imagesLoaded + + console.log(`${info.file} not loaded!`) } img.src = info.file })