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
Fullsize-images with uppercase file extension does not show up in Overlay-Gallery (black icon with white triangle appears). Still valid for 3.0.1.
In jquery.prettyPhoto.js line 719:
var results = regex.exec( pp_images[i] );
changeed to
var results = regex.exec( (pp_images[i]).toLowerCase() );
will fix this.
Refer to prettyPhoto Forum: http://forums.no-margin-for-errors.com/discussion/comment/1699/#Comment_1699
/cs
The text was updated successfully, but these errors were encountered:
Fullsize-images with uppercase file extension does not show up in Overlay-Gallery (black icon with white triangle appears). Still valid for 3.0.1.
In jquery.prettyPhoto.js line 719:
var results = regex.exec( pp_images[i] );
changeed to
var results = regex.exec( (pp_images[i]).toLowerCase() );
will fix this.
Refer to prettyPhoto Forum:
http://forums.no-margin-for-errors.com/discussion/comment/1699/#Comment_1699
/cs
The text was updated successfully, but these errors were encountered: