Index: trunk/parsers/wikidom/lib/es/es.Document.js |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | /** |
3 | 3 | * |
| 4 | + * @extends {EventEmitter} |
4 | 5 | * @param blocks {Array} List of blocks |
5 | 6 | * @returns {Document} |
6 | 7 | */ |
Index: trunk/parsers/wikidom/lib/es/es.ParagraphBlock.js |
— | — | @@ -1,5 +1,6 @@ |
2 | 2 | /** |
3 | 3 | * |
| 4 | + * @extends {Block} |
4 | 5 | * @param lines {Array} List of line objects |
5 | 6 | * @returns {ParagraphBlock} |
6 | 7 | */ |
Index: trunk/parsers/wikidom/lib/es/es.Block.js |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | /** |
3 | | - * |
| 3 | + * @extends {EventEmitter} |
4 | 4 | * @returns {Block} |
5 | 5 | */ |
6 | 6 | function Block() { |
Index: trunk/parsers/wikidom/lib/es/es.Content.js |
— | — | @@ -6,6 +6,7 @@ |
7 | 7 | * paired with offset annotation), especially when performing substring operations. Content can be |
8 | 8 | * derived from or converted to one or more WikiDom line objects. |
9 | 9 | * |
| 10 | + * @extends {EventEmitter} |
10 | 11 | * @param content {Array} List of plain or annotated characters |
11 | 12 | * @returns {Content} |
12 | 13 | */ |
Index: trunk/parsers/wikidom/lib/es/es.TextFlow.js |
— | — | @@ -1,6 +1,7 @@ |
2 | 2 | /** |
3 | 3 | * Renders and provides access to flowed text. |
4 | 4 | * |
| 5 | + * @extends {EventEmitter} |
5 | 6 | * @param $container {jQuery Selection} Element to render into |
6 | 7 | * @returns {TextFlow} |
7 | 8 | */ |