🌍
English
Hello/Hi/Greetings,
Current version of Stripped theme in Crome generate a next message:
Uncaught Error: Syntax error, unrecognized expression: [href$=.jpg],[href$=.jpeg]
for preload.js.
It can be replaced with correct code:
$prefetchTags.filter('[href$=".jpg"],[href$=".jpeg"]')
Offline
Another problem with preloading - after fix JS code:
GET http://.../piwigo/action.php?id=104&part=e 400 (Bad request)
when image size in theme config not default (M).
Offline
thx for reporting! I will take a look
Offline
Fix in js/preload.js:
replace
new Image().src = jQuery(this).html();
with
new Image().src = jQuery(this).html().replace("&","&");
Offline