-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1114 from CruGlobal/accessible-labels-inputs
[no-Jira] Improve ARIA labels and tabbable inputs
- Loading branch information
Showing
23 changed files
with
339 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
<div class="modal-body"> | ||
<div class="form-group"> | ||
<label>Receipt Title</label> | ||
<input name="receiptTitle" type="text" class="form-control" ng-model="$ctrl.receiptTitle" disabled> | ||
<span class="help-block"> | ||
<strong>Email <a href="mailto:[email protected]">[email protected]</a> to update/change.</strong> | ||
<label> | ||
Receipt Title | ||
<input name="receiptTitle" type="text" class="form-control" aria-describedby="receipt-help" ng-model="$ctrl.receiptTitle" disabled> | ||
</label> | ||
<span id="receipt-help" class="help-block"> | ||
<strong>Email <a href="mailto:[email protected]">[email protected]</a> to update/change.</strong> | ||
</span> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<label translate>Give.Cru.org Title</label> | ||
<input name="giveTitle" type="text" class="form-control" ng-model="$ctrl.giveTitle"> | ||
<label> | ||
<span translate>Give.Cru.org Title</span> | ||
<input name="giveTitle" type="text" class="form-control" ng-model="$ctrl.giveTitle"> | ||
</label> | ||
</div> | ||
</div> | ||
<div class="modal-footer"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<button class="btn btn-primary btn-{{$ctrl.buttonSize}}" ng-click="$ctrl.configModal()"> | ||
<button class="btn btn-primary btn-{{$ctrl.buttonSize}}" ng-click="$ctrl.configModal()" aria-describedby="{{$ctrl.describedBy}}"> | ||
{{$ctrl.buttonLabel}} | ||
</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.