Файл: upload-2031-rs1/catalog/view/theme/default/template/payment/free_checkout.tpl
Строк: 37
<div class="buttons">
<div
class="pull-right">
<input type="button"
value="<?php echo $button_confirm; ?>"
id="button-confirm" class="btn btn-primary"
data-loading-text="<?php echo $text_loading; ?>" />
</div>
</div>
<script
type="text/javascript"><!--
$('#button-confirm').on('click',
function() {
$.ajax({
type: 'get',
url:
'index.php?route=payment/free_checkout/confirm',
cache:
false,
beforeSend: function()
{
$('#button-confirm').button('loading');
},
complete: function()
{
$('#button-confirm').button('reset');
},
success: function()
{
location = '<?php echo $continue;
?>';
}
});
});
//--></script>