Pārlūkot izejas kodu

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

Allow whitespace on background-images, w3 compliance
Benjamin Tan 6 gadi atpakaļ
vecāks
revīzija
d5f4edeeef
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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() ) {