bebeboutik/modules/trustedshopsbbb/views/rich_snippets_2.tpl
Marion Muszynski 90a8112c07 fix js
2017-02-24 17:34:30 +01:00

18 lines
831 B
Smarty

<div id="customCheckoutDiv2"></div>
<script type="text/javascript">
{literal}
$(document).ready(function() {
if($('#customCheckoutDiv div').length>0) {
$('#customCheckoutDiv2').html($('#customCheckoutDiv').html());
$('#customCheckoutDiv2 div[id^=\'tsbadge_\']').css('width','200px');
$('#customCheckoutDiv2 div[id^=\'tsCustomBadge\']').css('width','200px');
} else {
setTimeout(function(){
$('#customCheckoutDiv2').html($('#customCheckoutDiv').html());
$('#customCheckoutDiv2 div[id^=\'tsbadge_\']').css('width','200px');
$('#customCheckoutDiv2 div[id^=\'tsCustomBadge\']').css('width','200px');
},1200);
}
});
{/literal}
</script>