| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index d666ba001f0b3378f2ad9e0215458e4f812d36f4..8e2140ae1c0311bd2c9a046306c77bd5852417e0 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -1,8 +1,27 @@
|
| -/// The Dart HTML library.
|
| -///
|
| -/// For examples, see
|
| -/// [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples)
|
| -/// on Github.
|
| +/**
|
| + * HTML elements and other resources for web-based applications that need to
|
| + * interact with the browser and the DOM (Document Object Model).
|
| + *
|
| + * This library includes DOM element types, CSS styling, local storage,
|
| + * media, speech, events, and more.
|
| + * To get started,
|
| + * check out the [Element] class, the base class for many of the HTML
|
| + * DOM types.
|
| + *
|
| + * ## Other resources
|
| + *
|
| + * * If you've never written a web app before, try our
|
| + * tutorials—[A Game of Darts](http://dartlang.org/docs/tutorials).
|
| + *
|
| + * * To see some web-based Dart apps in action and to play with the code,
|
| + * download
|
| + * [Dart Editor](http://www.dartlang.org/#get-started)
|
| + * and run its built-in examples.
|
| + *
|
| + * * For even more examples, see
|
| + * [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples)
|
| + * on Github.
|
| + */
|
| library dart.dom.html;
|
|
|
| import 'dart:async';
|
|
|