Srv Bebeboutik 6c0978166c add modules
2016-01-04 12:49:26 +01:00

17 lines
428 B
JavaScript
Executable File

$('#jqm_page_order').live('pageshow', function() {
$('#paypal_payment_form').prev().attr('rel', 'paypal');
var found = false;
$('#HOOK_PAYMENT').children().each(function() {
if ($(this).attr('id') != 'paypal_payment_form' && $(this).attr('rel') != 'paypal')
$(this).html('');
else
found = true;
});
if (!found) {
$('#HOOK_PAYMENT').html(translate_nopaymentmodule);
$('#jqm_page_order h4').html('');
}
});