Index: trunk/parsers/wikidom/lib/es/es.Block.js |
— | — | @@ -31,7 +31,7 @@ |
32 | 32 | if ( !this.document ) { |
33 | 33 | throw 'Missing document error. Block is not attached to a document.'; |
34 | 34 | } |
35 | | - var index = this.index() + 1; |
| 35 | + var index = this.getIndex() + 1; |
36 | 36 | return this.document.blocks.length > index ? this.document.blocks[index] : null; |
37 | 37 | }; |
38 | 38 | |