Fixed example in dart:html Events

BUG= https://code.google.com/p/dart/issues/detail?id=19641
R=efortuna@google.com

Review URL: https://codereview.chromium.org//365083006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37990 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
kevmoo@google.com 2014-07-03 19:03:13 +00:00
parent 13b10de8db
commit bc4c2eba68
3 changed files with 12 additions and 12 deletions

View file

@ -12293,10 +12293,10 @@ class EventSource extends EventTarget native "EventSource" {
*
* Custom events can be declared as:
*
* class DataGenerator {
* static EventStreamProvider<Event> dataEvent =
* new EventStreamProvider('data');
* }
* class DataGenerator {
* static EventStreamProvider<Event> dataEvent =
* new EventStreamProvider('data');
* }
*
* Then listeners should access the event with:
*

View file

@ -12526,10 +12526,10 @@ class EventSource extends EventTarget {
*
* Custom events can be declared as:
*
* class DataGenerator {
* static EventStreamProvider<Event> dataEvent =
* new EventStreamProvider('data');
* }
* class DataGenerator {
* static EventStreamProvider<Event> dataEvent =
* new EventStreamProvider('data');
* }
*
* Then listeners should access the event with:
*

View file

@ -22,10 +22,10 @@ part of $LIBRARYNAME;
*
* Custom events can be declared as:
*
* class DataGenerator {
* static EventStreamProvider<Event> dataEvent =
* new EventStreamProvider('data');
* }
* class DataGenerator {
* static EventStreamProvider<Event> dataEvent =
* new EventStreamProvider('data');
* }
*
* Then listeners should access the event with:
*