You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
right now we can only display up to 10 images. id like to increase that, is it possible?
to clarify, I wuold like to change the default # of images from 3 to another number (say 10) and I would also like the dropdown which currently lets you select from 0-10 to have a higher limit.
The text was updated successfully, but these errors were encountered:
You can do both of those by editing the main.js file. Lines 113 and 471 handle the default number of displayed images, while line 109 handles how many options you have in the dropdown menu.
Of note is that, by default, the formula in line 109 will continuously add options (by 1) until it reaches the maximum amount (10). If after increasing the maximum you feel like there's a bit too many options, like I did, you can make them only show up in multiples of a number by changing the "i++" in that same line to "i+= x". With "x" being number you want the multiples of, in this case.
right now we can only display up to 10 images. id like to increase that, is it possible?
to clarify, I wuold like to change the default # of images from 3 to another number (say 10) and I would also like the dropdown which currently lets you select from 0-10 to have a higher limit.
The text was updated successfully, but these errors were encountered: