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