fixed any index

This commit is contained in:
unknown
2015-03-11 10:48:18 +01:00
parent 063a6ccc29
commit d2ff5898b8

View File

@@ -44,7 +44,8 @@ function registerWebComponent(webComponentClass: Function, ...mixins: any[]): vo
for (var i in webComponent) {
// do not include polymer functions
if (i != "async" && i != "job" && i != "fire" && i != "asyncFire" && i != "cancelUnbindAll") {
flattenedComponent[i] = webComponent[i];
var attribute: any = webComponent[i];
flattenedComponent[i] = attribute;
}
}