Skip to content

Commit

Permalink
Fallback to string lookup to fix support for extra effects.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Orvell committed Oct 19, 2015
1 parent ead9adb commit d3c4611
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/bind/accessors.html
Expand Up @@ -80,7 +80,7 @@

_effectEffects: function(property, value, effects, old, fromAbove) {
for (var i=0, l=effects.length, fx; (i<l) && (fx=effects[i]); i++) {
var fn = fx.fn;
var fn = fx.fn || Polymer.Bind['_' + fx.kind + 'Effect'];
if (fn) {
fn.call(this, property, value, fx.effect, old, fromAbove);
}
Expand Down

0 comments on commit d3c4611

Please sign in to comment.