Merge pull request #65 from otacke/fix-css-url

Add quotes to CSS URL
pull/69/head
Frode Petterson 2021-04-08 11:22:23 +02:00 committed by GitHub
commit 1eb269fa58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@
// Add back image for card // Add back image for card
if (backImage) { if (backImage) {
var backgroundImage = 'background-image:url(' + backImage + ')'; var backgroundImage = "background-image:url('" + backImage + "')";
styles.front += backgroundImage; styles.front += backgroundImage;
styles.back += backgroundImage; styles.back += backgroundImage;