Add missing semicolons
parent
8347a2de58
commit
5d8d673117
|
@ -102,12 +102,12 @@ export default class SlideContent {
|
|||
|
||||
// Images
|
||||
if( backgroundImage ) {
|
||||
let backgroundString = ''
|
||||
let backgroundString = '';
|
||||
backgroundImage.split(',').forEach(background => {
|
||||
backgroundString = backgroundString.concat(
|
||||
'url(' + encodeURI(background.trim()) + '),'
|
||||
);
|
||||
})
|
||||
});
|
||||
backgroundContent.style.backgroundImage = backgroundString.substr(0, backgroundString.length - 1);
|
||||
}
|
||||
// Videos
|
||||
|
|
Loading…
Reference in New Issue