Skip to content

Commit

Permalink
Add missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
cmeessen committed Apr 23, 2021
1 parent 8347a2d commit 5d8d673
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/controllers/slidecontent.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5d8d673

Please sign in to comment.