diff options
Diffstat (limited to 'lib/output/website/index.js')
-rw-r--r-- | lib/output/website/index.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/output/website/index.js b/lib/output/website/index.js index 35e81c2..e60dae2 100644 --- a/lib/output/website/index.js +++ b/lib/output/website/index.js @@ -1,13 +1,13 @@ var util = require('util'); -var Output = require('../base'); +var FolderOutput = require('../base'); function WebsiteOutput() { - Output.apply(this, arguments); + FolderOutput.apply(this, arguments); } -util.inherits(WebsiteOutput, Output); +util.inherits(WebsiteOutput, FolderOutput); // Write a page (parsable file) -WebsiteOutput.prototype.writePage = function(page) { +WebsiteOutput.prototype.onPage = function(page) { }; |