0

I have been tasked at making notification toggles be accessible via tab for accessibility purposes. Googling this has ended in utter failure. How can I accomplish this?

HTML:

<!-- Settings - Notifications -->
<div class="panel-body account-settings" ng-show="item == 3" ng-controller="noteSettingsController as note">
    <div class="row">
        <h4 class="text-center">Email</h4>
        <form class="form-horizontal">
            <div class="form-group" ng-repeat="(key, alert) in defs.email">
                <div class="row">
                    <label for="emailCritNotes" class="col-sm-2 control-label">{{alert.name}}</label>
                    <div class="col-sm-8">
                        {{alert.desc}}
                    </div>
                    <div class="col-sm-2">
                        <i class="fa" ng-click="toggleEmail(key)" ng-class="{'fa-toggle-on': alert.status, 'fa-toggle-off': !alert.status}"></i>
                    </div>
                </div>
            </div>
        </form>
    </div>
Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
morissette
  • 1,071
  • 1
  • 8
  • 29

0 Answers0