cleanup image div script
This commit is contained in:
parent
8a81224289
commit
8603e19617
1 changed files with 5 additions and 1 deletions
|
@ -2,5 +2,9 @@ import './creative';
|
|||
|
||||
$('.image').each(function () {
|
||||
const ele = $(this);
|
||||
ele.css('background-image', 'url(' + ele.data('image') + ')');
|
||||
if (ele.data('image')) {
|
||||
ele.css('background-image', 'url(' + ele.data('image') + ')');
|
||||
} else {
|
||||
ele.removeClass('image');
|
||||
}
|
||||
});
|
||||
|
|
Reference in a new issue