Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Unified Diff: pkg/template_binding/lib/src/input_element.dart

Issue 34453003: Rename mdv -> template_binding, remove experiemntal apis from dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/template_binding/lib/src/input_bindings.dart ('k') | pkg/template_binding/lib/src/list_diff.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « pkg/template_binding/lib/src/input_bindings.dart ('k') | pkg/template_binding/lib/src/list_diff.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698