Quellcode durchsuchen

Allow whitespace on background-images, w3 compliance

RobertBaron vor 7 Jahren
Ursprung
Commit
f070ba47ec
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      js/reveal.js

+ 1 - 1
js/reveal.js

@@ -3085,7 +3085,7 @@
 
 				// Images
 				if( backgroundImage ) {
-					background.style.backgroundImage = 'url('+ backgroundImage +')';
+					background.style.backgroundImage = 'url('+ encodeURI(backgroundImage) +')';
 				}
 				// Videos
 				else if ( backgroundVideo && !isSpeakerNotes() ) {