diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-02-16 23:30:08 +0100 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2016-02-16 23:30:08 +0100 |
commit | db3d21db49a7260df03ae987b58c495178193dde (patch) | |
tree | 06d14b1dd71f0ba12c03b54986e6bb3dbf3aa5c3 /lib/output/website/index.js | |
parent | ca85c0ecf35eb2265b35ae480fbe34b12cf4bafe (diff) | |
download | gitbook-db3d21db49a7260df03ae987b58c495178193dde.zip gitbook-db3d21db49a7260df03ae987b58c495178193dde.tar.gz gitbook-db3d21db49a7260df03ae987b58c495178193dde.tar.bz2 |
Start commands for plugins installation
Diffstat (limited to 'lib/output/website/index.js')
-rw-r--r-- | lib/output/website/index.js | 5 |
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'; |