Przeglądaj źródła

Merge pull request #1836 from RobertBaron/background-whitespace-uri

Allow whitespace on background-images, w3 compliance
Benjamin Tan 6 lat temu
rodzic
commit
d5f4edeeef
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      js/reveal.js

+ 1 - 1
js/reveal.js

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