Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

<label for="{{fieldId}}" ng-class="{'sr-only': !showLabel}">
<div>
<span class='input-label-content' required-field is-required="ngRequired"><span>{{label}}:</span></span>
<span class="sr-only">{{isMilitary ? 'HH:MM' : 'HH:MM AM/PM'}}</span>
</div>
</label>
<div class="time-control" form-control-wrapper error-handling="errorHandling">
<div class="full-width">
<div class="input-group">
<input type="text"
ng-attr-name="{{fieldId}}"
ng-attr-id="{{fieldId}}"
ng-model="ngModel"
ng-change="onChange()"
ng-keydown="onKeydown($event)"
class="form-control date-input"
ng-attr-placeholder="{{isMilitary ? 'HH:MM' : 'HH:MM AM/PM'}}"
ng-readonly="ngReadonly"
aria-readonly="{{ngReadonly}}"
ng-required="ngRequired"
ng-disabled="ngDisabled"
aria-disabled="{{ngDisabled}}"
maxlength="{{isMilitary ? 5 : 8}}"
ng-trim="false",
ng-focus="onFocus()"
ng-blur="onBlur()"
ios-keyboard/>
<span class="input-group-btn">
<button type="button"
class="btn btn-default"
ng-disabled="ngReadonly || ngDisabled"
accessible-time-picker
ng-model="ngModel"
increment="increment"
is-military="isMilitary">
<span class="sr-only">This time selection control is not optimized for screen readers. Please directly enter the time in the text box provided. Open Time Picker</span>
<i class="icon icon-time" aria-hidden="true"></i>
</button>
</span>
</div>
</div>
</div>