-
Notifications
You must be signed in to change notification settings - Fork 65
added ariaLabel to timepicker input field #1795
added ariaLabel to timepicker input field #1795
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.
Just a few minor things. Looks good!
@@ -20,7 +20,7 @@ import { TimepickerTestComponent } from './fixtures/timepicker-component.fixture | |||
|
|||
const moment = require('moment'); | |||
|
|||
describe('Timepicker', () => { | |||
fdescribe('Timepicker', () => { |
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.
fdescribe
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.
whoops, my bad. fixed.
@@ -27,6 +27,7 @@ import { | |||
Subscription | |||
} from 'rxjs/Subscription'; | |||
import { SkyTimepickerTimeOutput } from './timepicker.interface'; | |||
import { SkyResourcesService } from '../resources'; |
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.
import {
SkyResourcesService
} from '../resources';
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.
done
public constructor( | ||
private renderer: Renderer, | ||
private elRef: ElementRef, | ||
private skyResourceSvc: SkyResourcesService |
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.
For consistency...
private resourceService: SkyResourcesService
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.
done
Codecov Report
@@ Coverage Diff @@
## master #1795 +/- ##
==========================================
+ Coverage 99.98% 99.98% +<.01%
==========================================
Files 410 410
Lines 8580 8585 +5
Branches 1263 1266 +3
==========================================
+ Hits 8579 8584 +5
Misses 1 1
Continue to review full report at Codecov.
|
added a default aria label to the timepicker input directive
Resolves: #862