tidy up code for #2940
parent
a112712f12
commit
236d3e3722
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -102,13 +102,9 @@ export default class SlideContent {
|
|||
|
||||
// Images
|
||||
if( backgroundImage ) {
|
||||
let backgroundString = '';
|
||||
backgroundImage.split(',').forEach(background => {
|
||||
backgroundString = backgroundString.concat(
|
||||
'url(' + encodeURI(background.trim()) + '),'
|
||||
);
|
||||
});
|
||||
backgroundContent.style.backgroundImage = backgroundString.substr(0, backgroundString.length - 1);
|
||||
backgroundContent.style.backgroundImage = backgroundImage.split( ',' ).map( background => {
|
||||
return `url(${encodeURI(background.trim())})`;
|
||||
}).join( ',' );
|
||||
}
|
||||
// Videos
|
||||
else if ( backgroundVideo && !this.Reveal.isSpeakerNotes() ) {
|
||||
|
|
Loading…
Reference in New Issue