feat(forms): added support for status classes

This commit is contained in:
vsavkin
2015-06-03 11:56:01 -07:00
parent 96cadcc29e
commit 3baf815d76
13 changed files with 167 additions and 38 deletions

View File

@ -105,7 +105,10 @@ class BindingRecordsCreator {
if (directiveRecord.callOnCheck) {
ListWrapper.push(bindings, BindingRecord.createDirectiveOnCheck(directiveRecord));
}
}
for (var i = 0; i < directiveBinders.length; i++) {
var directiveBinder = directiveBinders[i];
// host properties
MapWrapper.forEach(directiveBinder.hostPropertyBindings, (astWithSource, propertyName) => {
var dirIndex = new DirectiveIndex(boundElementIndex, i);