Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Fix for thumbnail url that contains spaces #1965

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/js/thumbs.js
Expand Up @@ -117,7 +117,7 @@
'" tabindex="0" class="' +
CLASS_LOAD +
'"' +
(src && src.length ? ' style="background-image:url(' + src + ')" />' : "") +
(src && src.length ? ' style="background-image:url(\'' + src + '\')" />' : "") +
"></li>"
);
});
Expand Down