diff options
Diffstat (limited to 'lib/output/website/index.js')
-rw-r--r-- | lib/output/website/index.js | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/lib/output/website/index.js b/lib/output/website/index.js index fc9bc6b..6166ccc 100644 --- a/lib/output/website/index.js +++ b/lib/output/website/index.js @@ -1,15 +1,8 @@ -var util = require('util'); -var FolderOutput = require('../folder'); -var ConrefsLoader = require('../conrefs'); +var conrefsLoader = require('../conrefs'); var Theme = require('./theme'); -function WebsiteOutput() { - FolderOutput.apply(this, arguments); - ConrefsLoader.apply(this); -} -util.inherits(WebsiteOutput, FolderOutput); -util.inherits(WebsiteOutput, ConrefsLoader); +var WebsiteOutput = conrefsLoader(); WebsiteOutput.prototype.name = 'website'; |