| Index: pkg/mdv/lib/src/input_element.dart
|
| diff --git a/pkg/mdv/lib/src/input_element.dart b/pkg/mdv/lib/src/input_element.dart
|
| deleted file mode 100644
|
| index 7e4855eca79fa8b24a2824f5bdcb1a40af459131..0000000000000000000000000000000000000000
|
| --- a/pkg/mdv/lib/src/input_element.dart
|
| +++ /dev/null
|
| @@ -1,25 +0,0 @@
|
| -// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
| -// 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;
|
| -
|
| -/** Extensions to the [InputElement] API. */
|
| -class _InputElementExtension extends _ElementExtension {
|
| - _InputElementExtension(InputElement 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);
|
| - }
|
| - if (name == 'checked') {
|
| - node.attributes.remove(name);
|
| - return new _CheckedBinding(node, model, path);
|
| - }
|
| - return super.createBinding(name, model, path);
|
| - }
|
| -}
|
|
|