Просмотр исходного кода

Allow whitespace on background-images, w3 compliance

RobertBaron 7 лет назад
Родитель
Сommit
f070ba47ec
1 измененных файлов с 1 добавлено и 1 удалено
  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() ) {