Skip to content

Commit

Permalink
Remove dirty check for custom events; unnecessary after #3678. Fixes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Jul 22, 2016
1 parent 5d21728 commit 92a9398
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/standard/effectBuilder.html
Expand Up @@ -325,12 +325,6 @@

value = this._computeFinalAnnotationValue(node, property, value, info);

// For better interop, dirty check before setting when custom events
// are used, since the target element may not dirty check (e.g. <input>)
if (info.customEvent && node[property] === value) {
return;
}

if (info.kind == 'attribute') {
this.serializeValueToAttribute(value, property, node);
} else {
Expand Down

0 comments on commit 92a9398

Please sign in to comment.