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

Unified Diff: pkg/polymer/lib/auto_binding.dart

Issue 350763003: [polymer] rename d-auto-binding to auto-binding-dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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 | « no previous file | pkg/polymer/lib/src/loader.dart » ('j') | pkg/web_components/pubspec.yaml » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/polymer/lib/auto_binding.dart
diff --git a/pkg/polymer/lib/auto_binding.dart b/pkg/polymer/lib/auto_binding.dart
index 44dc1ca41818b7179567805199cdccf121a0e092..56822794e2a1537a596a61ce43e4dc15e457db72 100644
--- a/pkg/polymer/lib/auto_binding.dart
+++ b/pkg/polymer/lib/auto_binding.dart
@@ -9,18 +9,18 @@ import 'package:polymer/polymer.dart';
import 'package:template_binding/template_binding.dart';
/**
- * The `d-auto-binding` element extends the template element. It provides a
+ * The `auto-binding-dart` element extends the template element. It provides a
* quick and easy way to do data binding without the need to setup a binding
* delegate or use the [templateBind] call. Both data and event handlers can be
* bound using the [model].
*
- * The `d-auto-binding` element acts just like a template that is bound to
+ * The `auto-binding-dart` element acts just like a template that is bound to
* a model. It stamps its content in the dom adjacent to itself. When the
* content is stamped, the `template-bound` event is fired.
*
* Example:
*
- * <template is="d-auto-binding">
+ * <template is="auto-binding-dart">
* <div>Say something: <input value="{{value}}"></div>
* <div>You said: {{value}}</div>
* <button on-tap="{{buttonTap}}">Tap me!</button>
@@ -41,7 +41,7 @@ import 'package:template_binding/template_binding.dart';
* </script>
*
*/
-// Dart note: renamed to d-auto-binding to avoid conflict with JS auto-binding.
+// Dart note: renamed to avoid conflict with JS auto-binding.
class AutoBindingElement extends TemplateElement with Polymer, Observable
implements TemplateBindExtension {
« no previous file with comments | « no previous file | pkg/polymer/lib/src/loader.dart » ('j') | pkg/web_components/pubspec.yaml » ('J')

Powered by Google App Engine
This is Rietveld 408576698