diff options
Diffstat (limited to 'lib/config')
-rw-r--r-- | lib/config/default.js | 2 | ||||
-rw-r--r-- | lib/config/index.js | 6 |
2 files changed, 0 insertions, 8 deletions
diff --git a/lib/config/default.js b/lib/config/default.js index 1695e11..23a92f9 100644 --- a/lib/config/default.js +++ b/lib/config/default.js @@ -1,5 +1,3 @@ -var path = require('path'); - module.exports = { // Book metadatas (somes are extracted from the README by default) 'title': null, diff --git a/lib/config/index.js b/lib/config/index.js index a5a0d67..34bf97c 100644 --- a/lib/config/index.js +++ b/lib/config/index.js @@ -62,12 +62,6 @@ Config.prototype.load = function() { that.options.plugins = _.union(that.options.plugins, that.options.defaultsPlugins); that.options.plugins = _.uniq(that.options.plugins, 'name'); - // Default value for text direction (from language) - /*if (!that.options.direction) { - var lang = i18n.getCatalog(that.options.language); - if (lang) that.options.direction = lang.direction; - }*/ - that.options.gitbook = gitbook.version; }); }; |