Skip to content

Commit

Permalink
fix(view-resources): ensure correct cache lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
stoffeastrom committed Mar 31, 2016
1 parent eefd4c6 commit 53b5190
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/view-resources.js
Expand Up @@ -85,11 +85,11 @@ export class ViewResources {
valueConverters: this.getValueConverter.bind(this),
bindingBehaviors: this.getBindingBehavior.bind(this)
};
this.attributes = {};
this.elements = {};
this.valueConverters = {};
this.bindingBehaviors = {};
this.attributeMap = {};
this.attributes = Object.create(null);
this.elements = Object.create(null);
this.valueConverters = Object.create(null);
this.bindingBehaviors = Object.create(null);
this.attributeMap = Object.create(null);
this.beforeCompile = this.afterCompile = this.beforeCreate = this.afterCreate = this.beforeBind = this.beforeUnbind = false;
}

Expand Down

0 comments on commit 53b5190

Please sign in to comment.