Skip to content

Commit 13ea2dc

Browse files
author
ehowlsla
committed
가상계좌 결제수단 추가
1 parent 3c533c4 commit 13ea2dc

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

bootpay/src/main/java/kr/co/bootpay/BootpayWebView.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -337,12 +337,10 @@ internal class BootpayWebView @JvmOverloads constructor(context: Context, attrs:
337337

338338
private fun onErrorHandled(data: String) {
339339
listener?.onError(data)
340-
// dialog?.dismiss()
341340
}
342341

343342
private fun onCancelHandled(data: String) {
344343
listener?.onCancel(data)
345-
// dialog?.dismiss()
346344
}
347345

348346
private fun onReadyHandled(data: String) {
@@ -355,7 +353,6 @@ internal class BootpayWebView @JvmOverloads constructor(context: Context, attrs:
355353

356354
private fun onDoneHandled(data: String) {
357355
listener?.onDone(data)
358-
// dialog?.dismiss()
359356
}
360357

361358
private inner class Client: WebChromeClient() {

sample/src/main/java/bootpay/co/kr/samplepayment/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public void onError(@Nullable String message) {
101101
Log.d("error", message);
102102
}
103103
})
104-
.onClose(new CloseListener() {
104+
.onClose(new CloseListener() { //결제창이 닫힐때 실행되는 부분
105105
@Override
106106
public void onClose(String message) {
107107
Log.d("close", "close");

0 commit comments

Comments
 (0)