Fix css url missing quotes

pull/65/head
Oliver Tacke 2021-01-07 15:26:57 +01:00
parent 4b7ae4908b
commit 628909b162
1 changed files with 1 additions and 1 deletions

View File

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