bebeboutik/modules/trustedshopsbbb/views/rich_snippets_2.tpl

18 lines
831 B
Smarty
Raw Normal View History

2017-02-24 17:28:19 +01:00
<div id="customCheckoutDiv2"></div>
<script type="text/javascript">
{literal}
$(document).ready(function() {
2017-02-24 17:34:30 +01:00
if($('#customCheckoutDiv div').length>0) {
2017-02-24 17:28:19 +01:00
$('#customCheckoutDiv2').html($('#customCheckoutDiv').html());
$('#customCheckoutDiv2 div[id^=\'tsbadge_\']').css('width','200px');
$('#customCheckoutDiv2 div[id^=\'tsCustomBadge\']').css('width','200px');
2017-02-24 17:34:30 +01:00
} else {
setTimeout(function(){
$('#customCheckoutDiv2').html($('#customCheckoutDiv').html());
$('#customCheckoutDiv2 div[id^=\'tsbadge_\']').css('width','200px');
$('#customCheckoutDiv2 div[id^=\'tsCustomBadge\']').css('width','200px');
},1200);
}
2017-02-24 17:28:19 +01:00
});
{/literal}
</script>