fix(ElementBinderBuilder): properly bind to web component properties

Fixes #776

Closes #1024
This commit is contained in:
Pawel Kozlowski
2015-03-20 18:44:51 +01:00
parent 81f3f32217
commit 0fb9f3bd6c
5 changed files with 29 additions and 19 deletions

View File

@ -206,6 +206,7 @@ function setupReflector() {
'initData': (a,v) => a.initData = v,
'data': (a,v) => a.data = v,
'condition': (a,v) => a.condition = v,
'if': (a,v) => a['if'] = v,
});
}