Skip to content

Commit

Permalink
Merge pull request #36 from ahabeb/master
Browse files Browse the repository at this point in the history
Fix background-size issue
  • Loading branch information
DanielHindi authored Apr 12, 2017
2 parents da09485 + 6cbe253 commit 8b816a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions widget/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -185,15 +185,15 @@
element.attr("style", 'background-color:white');
}
element.css({
'background-size': 'cover'
'background-size': 'cover !important'
});
});
}
else {
img = "";
element.attr("style", 'background-color:white');
element.css({
'background-size': 'cover'
'background-size': 'cover !important'
});
}
});
Expand Down

0 comments on commit 8b816a8

Please sign in to comment.