| Index: pkg/polymer/lib/src/instance.dart
|
| diff --git a/pkg/polymer/lib/src/instance.dart b/pkg/polymer/lib/src/instance.dart
|
| index e2183513cdc5c4065efd57c4764e8b4f4e6e76ed..5abafe03bafc16fc9d31ec8fabe770a4b59eab8f 100644
|
| --- a/pkg/polymer/lib/src/instance.dart
|
| +++ b/pkg/polymer/lib/src/instance.dart
|
| @@ -81,7 +81,7 @@ abstract class Polymer implements Element, Observable, NodeBindExtension {
|
|
|
| /// The one syntax to rule them all.
|
| static final BindingDelegate _polymerSyntax =
|
| - new _PolymerExpressionsWithEventDelegate();
|
| + new PolymerExpressionsWithEvents();
|
|
|
| static int _preparingElements = 0;
|
|
|
| @@ -968,7 +968,10 @@ class _PropertyValue {
|
| _PropertyValue(this.oldValue);
|
| }
|
|
|
| -class _PolymerExpressionsWithEventDelegate extends PolymerExpressions {
|
| +class PolymerExpressionsWithEvents extends PolymerExpressions {
|
| + PolymerExpressionsWithEvents({Map<String, Object> globals})
|
| + : super(globals: globals);
|
| +
|
| prepareBinding(String path, name, node) {
|
| if (_hasEventPrefix(name)) return Polymer.prepareBinding(path, name, node);
|
| return super.prepareBinding(path, name, node);
|
|
|