We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e349c33 commit ff85539Copy full SHA for ff85539
public/js/paystack-forms-public.js
@@ -55,7 +55,8 @@
55
if (transaction_amount > 2500) {extrafee = 100};
56
}
57
var total = transaction_amount + fees + extrafee;
58
- if (transaction_amount == '' || transaction_amount == 0) {
+ console.log(transaction_amount);
59
+ if (transaction_amount == '' || transaction_amount == 0 || transaction_amount.length == 0 || transaction_amount == null || isNaN (transaction_amount)) {
60
var total = 0;
61
var fees = 0;
62
0 commit comments