Merge pull request #1836 from RobertBaron/background-whitespace-uri
Allow whitespace on background-images, w3 compliance
This commit is contained in:
commit
d5f4edeeef
|
@ -3268,7 +3268,7 @@
|
|||
|
||||
// Images
|
||||
if( backgroundImage ) {
|
||||
background.style.backgroundImage = 'url('+ backgroundImage +')';
|
||||
background.style.backgroundImage = 'url('+ encodeURI( backgroundImage ) +')';
|
||||
}
|
||||
// Videos
|
||||
else if ( backgroundVideo && !isSpeakerNotes() ) {
|
||||
|
|
Loading…
Reference in New Issue