| Index: pkg/template_binding/lib/src/node.dart
|
| diff --git a/pkg/template_binding/lib/src/node.dart b/pkg/template_binding/lib/src/node.dart
|
| index 503b91a4c85fe13789e44673395344f94c1d002a..fbcf96a866dc8b4f0dffa92487e0c5d8db6c52c7 100644
|
| --- a/pkg/template_binding/lib/src/node.dart
|
| +++ b/pkg/template_binding/lib/src/node.dart
|
| @@ -157,8 +157,8 @@ JsObject bindableToJsObject(Bindable bindable) {
|
| if (bindable is _JsBindable) return bindable._js;
|
|
|
| var zone = Zone.current;
|
| - inZone(f) => zone.bindCallback(f);
|
| - inZoneUnary(f) => zone.bindUnaryCallback(f);
|
| + inZone(f) => zone.bindCallback(f, runGuarded: false);
|
| + inZoneUnary(f) => zone.bindUnaryCallback(f, runGuarded: false);
|
|
|
| return new JsObject.jsify({
|
| 'open': inZoneUnary(
|
|
|