Add missing semicolons

master
cmeessen 2021-04-23 10:15:40 +00:00
parent 8347a2de58
commit 5d8d673117
1 changed files with 2 additions and 2 deletions

View File

@ -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