소스 검색

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

Allow whitespace on background-images, w3 compliance
Benjamin Tan 6 년 전
부모
커밋
d5f4edeeef
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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() ) {