Chromium Code Reviews| Index: pkg/custom_element/lib/custom_element.dart |
| diff --git a/pkg/custom_element/lib/custom_element.dart b/pkg/custom_element/lib/custom_element.dart |
| index 2a13fda947514dc3b31f94e4d2ab17c72c6dcc9e..85222193108d15ee25b44d0028c11808a14dd867 100644 |
| --- a/pkg/custom_element/lib/custom_element.dart |
| +++ b/pkg/custom_element/lib/custom_element.dart |
| @@ -3,10 +3,15 @@ |
| // BSD-style license that can be found in the LICENSE file. |
| /** |
| - * Custom Elements let authors define their own elements. Authors associate code |
| - * with custom tag names, and then use those custom tag names as they would any |
| - * standard tag. See <www.polymer-project.org/platform/custom-elements.html> |
| - * for more information. |
| + * Custom DOM elements. |
| + * |
| + * This library provides access to the Polymer project's |
| + * [Custom Elements] |
| + * (http://www.polymer-project.org/platform/custom-elements.html) |
| + * API, which lets you define your own elements. With Custom Elements, you |
|
mem
2013/09/11 20:05:46
are we capitalizing Custom Element?
Kathy Walrath
2013/09/11 20:37:25
Polymer is, but that's yucky. Maybe we can capital
|
| + * associate code with custom tag names, and then use those custom tag names |
| + * as you would any standard tag. For more information, see the |
| + * [Polymer.dart homepage](http://www.dartlang.org/polymer-dart/). |
|
Jennifer Messerly
2013/09/11 19:51:16
actually, suggestion: link to https://www.dartlang
Kathy Walrath
2013/09/11 20:37:25
Done.
|
| */ |
| library custom_element; |