We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07e876b commit b889cbdCopy full SHA for b889cbd
feature-meme.js
@@ -11,7 +11,6 @@ request(`https://picsum.photos/v2/list?page=${pages}&limit=100`, function(
11
//dont load really wide images and portrait images
12
while(aspectRatio<(4/3)|| aspectRatio>(16/9))
13
{
14
- console.log('image rejected, reloading');
15
imageObj=response[Math.floor(Math.random() * 100)];
16
image.src = imageObj.download_url;
17
aspectRatio= imageObj.width/imageObj.height;
0 commit comments