-
Notifications
You must be signed in to change notification settings - Fork 86
Improve accessibility in Adyen SFCC cartridge #1352
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
base: develop
Are you sure you want to change the base?
Changes from 3 commits
0fc1ce6
2726cb8
44b1570
26004b2
c846ec3
77a8bd2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,14 @@ | ||
| <div class="modal fade" id="action-modal" role="dialog"> | ||
| <div class="modal fade" id="action-modal" role="dialog" aria-modal="true" aria-labelledby="action-modal"> | ||
| <div class="modal-dialog" id="adyenModalDialog"> | ||
| <div id="action-container"> | ||
| <h2 id="action-modal-title" class="sr-only">Action Required</h2> | ||
| <div class='invisible' id="cancelQrMethodsButton"> | ||
| <button id='cancelQrMethodsButtonStyling' onclick="location.href='${URLUtils.https('Checkout-Begin')}';"> | ||
| <button id='cancelQrMethodsButtonStyling' onclick="location.href='${URLUtils.https('Checkout-Begin')}';" aria-label="Cancel QR Payment"> | ||
| <img src="${URLUtils.staticURL('images/cancel.svg')}" alt="Cancel" /> | ||
| </button> | ||
| </div> | ||
| </div> | ||
| <div id="amazon-container"></div> | ||
| <div id="giftcard-container"></div> | ||
| </div> | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,15 @@ | ||
| <li class="nav-item" data-method-id="${paymentOption.ID}"> | ||
| <a class="nav-link adyen-tab" data-toggle="tab" href="#adyen-pos-content" role="tab"> | ||
| <a | ||
| class="nav-link adyen-tab" | ||
| id="tab-adyen-pos" | ||
| data-toggle="tab" | ||
| href="#adyen-pos-content" | ||
| role="tab" | ||
| aria-controls="adyen-pos-content" | ||
| aria-selected="false" | ||
|
||
| tabindex="-1" | ||
| aria-label="Select ${paymentOption.name}" | ||
| > | ||
| <img class="adyen-option" | ||
| src="${URLUtils.staticURL('/images/pos.png')}" | ||
| height="32" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.