fix(aria): aria label/id updates

This commit is contained in:
Adam Bradley
2015-12-14 21:34:40 -06:00
parent 2a32711857
commit 7c8c56ee3e
7 changed files with 72 additions and 101 deletions

View File

@@ -17,6 +17,7 @@ export class Form {
constructor() {
this._inputs = [];
this._ids = -1;
this._focused = null;
this.focusCtrl(document);
@@ -80,4 +81,8 @@ export class Form {
}
}
nextId() {
return ++this._ids;
}
}