(image)
| 150 | } |
| 151 | |
| 152 | function addImageVars(image) |
| 153 | { |
| 154 | const vars = []; |
| 155 | |
| 156 | if(image.type) |
| 157 | vars.push('type='+image.type); |
| 158 | |
| 159 | if(image.forceSize && image.forceSize != 150) |
| 160 | vars.push('size='+image.forceSize); |
| 161 | |
| 162 | return image.path+(vars.length ? '?'+vars.join('&') : ''); |
| 163 | } |
| 164 | |
| 165 | var data = false; |
| 166 |