| Index: pkg/template_binding/lib/src/input_element.dart
|
| diff --git a/pkg/mdv/lib/src/input_element.dart b/pkg/template_binding/lib/src/input_element.dart
|
| similarity index 72%
|
| rename from pkg/mdv/lib/src/input_element.dart
|
| rename to pkg/template_binding/lib/src/input_element.dart
|
| index 7e4855eca79fa8b24a2824f5bdcb1a40af459131..0a6d45a1a9569cb61eac3c5dfe6ef985a717edec 100644
|
| --- a/pkg/mdv/lib/src/input_element.dart
|
| +++ b/pkg/template_binding/lib/src/input_element.dart
|
| @@ -2,23 +2,23 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -part of mdv;
|
| +part of template_binding;
|
|
|
| /** Extensions to the [InputElement] API. */
|
| class _InputElementExtension extends _ElementExtension {
|
| _InputElementExtension(InputElement node) : super(node);
|
|
|
| - InputElement get node => super.node;
|
| + InputElement get _node => super._node;
|
|
|
| NodeBinding createBinding(String name, model, String path) {
|
| if (name == 'value') {
|
| // TODO(rafaelw): Maybe template should remove all binding instructions.
|
| - node.attributes.remove(name);
|
| - return new _ValueBinding(node, model, path);
|
| + _node.attributes.remove(name);
|
| + return new _ValueBinding(_node, model, path);
|
| }
|
| if (name == 'checked') {
|
| - node.attributes.remove(name);
|
| - return new _CheckedBinding(node, model, path);
|
| + _node.attributes.remove(name);
|
| + return new _CheckedBinding(_node, model, path);
|
| }
|
| return super.createBinding(name, model, path);
|
| }
|
|
|