summaryrefslogtreecommitdiffstats
path: root/lib/output/website/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/output/website/index.js')
-rw-r--r--lib/output/website/index.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/output/website/index.js b/lib/output/website/index.js
index 7322a57..fc9bc6b 100644
--- a/lib/output/website/index.js
+++ b/lib/output/website/index.js
@@ -1,11 +1,14 @@
var util = require('util');
+var FolderOutput = require('../folder');
var ConrefsLoader = require('../conrefs');
var Theme = require('./theme');
function WebsiteOutput() {
- ConrefsLoader.apply(this, arguments);
+ FolderOutput.apply(this, arguments);
+ ConrefsLoader.apply(this);
}
+util.inherits(WebsiteOutput, FolderOutput);
util.inherits(WebsiteOutput, ConrefsLoader);
WebsiteOutput.prototype.name = 'website';