| Index: pkg/polymer/lib/src/instance.dart
|
| diff --git a/pkg/polymer/lib/src/instance.dart b/pkg/polymer/lib/src/instance.dart
|
| index c96aca005444afcf639193422149cb25fb94ab80..dd5c349cbcc30649f669b12731c57902579adae5 100644
|
| --- a/pkg/polymer/lib/src/instance.dart
|
| +++ b/pkg/polymer/lib/src/instance.dart
|
| @@ -394,7 +394,9 @@ abstract class Polymer implements Element {
|
| // reflect bound property to attribute when binding
|
| // to ensure binding is not left on attribute if property
|
| // does not update due to not changing.
|
| - reflectPropertyToAttribute(name);
|
| + // Dart note: we include this patch:
|
| + // https://github.com/Polymer/polymer/pull/319
|
| + reflectPropertyToAttribute(MirrorSystem.getName(property.simpleName));
|
| return bindings[name] = observer;
|
| } else {
|
| // Cannot call super.bind because of
|
|
|