-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Strip 29 reuse creditcards #25
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2 Kommentare habe ich direkt am Code hinterlassen ansonsten mein Verbesserungsvorschlag ist in diesem PR: #26
</div> | ||
</div> | ||
|
||
[{oxscript include="https://js.stripe.com/v3/"}] | ||
[{capture name="stripeComponentsLoad"}] | ||
var pubKey = '[{$oPaymentModel->getPublishableKey()}]'; | ||
if (pubKey == '') { | ||
[{if false}]<script>[{/if}] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dies wird nie ausgeführt, oder übersehe ich etwas?
document.getElementById('[{$sInputName}]_error').innerHTML = '[{oxmultilang ident="STRIPE_ERROR_ORDER_CONFIG_PUBKEY"}]'; | ||
document.getElementById('[{$sInputName}]_error_box').style.display = ''; | ||
} else { | ||
[{if $oView->stripeGetUsedCards()}] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
smarty und javascript zu mixen ist imho nicht gut wegen clean code, generell ist die abfrage auch nicht nötig weil sie implizit durch $("#stripe_used_card").change(function()
getan wird nur wenn $oView->stripeGetUsedCards()
true ist liefert jquery für $("#stripe_used_card") ein Array mit elementen zurück, nicht nicht, wird der change listener auch auf keinem element registriert, eigentlich imho auch nicht clean code, aber das ist ein wesentliches Element von good old jquery :D
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ich habe es vorsichtshalber noch einmal probiert. $("#stripe_used_card") gibt null zurück, wenn es nicht existiert. Also alles fein. Danke!
No description provided.