PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
plugins
/
payment
/
resources
/
assets
/
js
$(() => { $(document).on("click", ".get-refund-detail", function(e) { e.preventDefault(); const $this = $(e.currentTarget); $.ajax({ type: "GET", cache: false, url: $this.data('url'), beforeSend: () => { $this.find('i').addClass('fa-spin'); }, success: res => { if (!res.error) { $($this.data('element')).html(res.data); } else { Botble.showError(res.message); } }, error: res => { Botble.handleError(res); }, complete: () => { $this.find('i').removeClass('fa-spin'); } }); }); });
[+]
..
[-] payment-methods.js
[edit]
[-] payment.js
[edit]
[-] payment-detail.js
[edit]