1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00

Hide Plaid until it's fixed

This commit is contained in:
Hillel Coren 2017-12-31 16:43:02 +02:00
parent e9a55aec94
commit b40deb13bb

View File

@ -337,7 +337,7 @@
var enableBicoin = $('#enable_bitcoin').is(':checked');
var enableApplePay = $('#enable_apple_pay').is(':checked');
$('.stripe-webhook-options').toggle(enableAch || enableAlipay || enableSofort || enableSepa || enableBicoin);
$('.stripe-ach-options').toggle(enableAch);
$('.stripe-ach-options').toggle(enableAch && {{ $accountGateway && $accountGateway->getPlaidClientId() ? 'true' : 'false' }});
$('.verification-file').toggle(enableApplePay);
}