Skip to content

Commit

Permalink
Fix failing tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Feb 13, 2015
1 parent 66da853 commit be90a0c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion polymer-mini.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
initFeatures: function() {
this._poolContent();
this._pushHost();
this._setupConfigure();
this._stampTemplate();
this._popHost();
this._marshalAttributes();
Expand Down
2 changes: 1 addition & 1 deletion src/features/standard/notify-path.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
value : this.getPathValue(effect.value);
v = effect.negate ? !v : v;
if (effect.kind == 'attribute') {
this.serializeValueToAttribute(v, effect.name, n);
this.serializeValueToAttribute(v, effect.name, node);
} else { // property || text
//console.log(this.localName + '#' + this.id +
// '.' + (effect.name || 'textContent') + ' = ' + v);
Expand Down

0 comments on commit be90a0c

Please sign in to comment.