Index: trunk/parsers/wikidom/lib/wiki.Context.js |
— | — | @@ -35,8 +35,8 @@ |
36 | 36 | * @return Object: Page DOM (document object) |
37 | 37 | */ |
38 | 38 | this.getPageDom = function( namespace, title ) { |
39 | | - return typeof options.pageExists === 'function' |
40 | | - ? options.pageExists( namespace, title ) : null; |
| 39 | + return typeof options.getPageDom === 'function' |
| 40 | + ? options.getPageDom( namespace, title ) : null; |
41 | 41 | }; |
42 | 42 | |
43 | 43 | /** |