1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-08-11 17:14:57 +02:00

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

Allow whitespace on background-images, w3 compliance
This commit is contained in:
Benjamin Tan
2018-02-09 20:05:26 +08:00

View File

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