blob: 7aa6526a06438fd8719471c9b71a7c87470e2189 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<h3>{{ text_payment_info }}</h3>
<div class="alert alert-success" style="display: none;"><i class="fa fa-check-circle"></i></div>
<div id="table-action"></div>
<script type="text/javascript"><!--
function getPayment() {
$.ajax({
url: 'index.php?route=extension/payment/cardinity/getPayment&user_token={{ user_token }}',
dataType: 'html',
data: {
order_id: '{{ order_id }}'
},
beforeSend: function() {
$('#button-filter').button('loading');
$('#table-action').html('<i class="cardinity-loading fa fa-spinner fa-spin fa-5x" style="text-align: center; margin: 0 auto; width: 100%; font-size: 5em;"></i>');
},
complete: function() {
$('#button-filter').button('reset');
},
success: function(html) {
$('#table-action').html(html);
}
});
}
getPayment();
//--></script>
|