diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-01-30 16:53:38 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-01-30 16:53:42 +0100 |
commit | d7caf6686e4574472f6648bc9409476059571490 (patch) | |
tree | 39693515464b95b8cde7fffd409146d9adb8960f /lib/generators/ebook.js | |
parent | 71dad602ec68a105762eff102dba12a98a40a1b1 (diff) | |
download | gitbook-d7caf6686e4574472f6648bc9409476059571490.zip gitbook-d7caf6686e4574472f6648bc9409476059571490.tar.gz gitbook-d7caf6686e4574472f6648bc9409476059571490.tar.bz2 |
Fix namespacing of plugins resources
Diffstat (limited to 'lib/generators/ebook.js')
-rw-r--r-- | lib/generators/ebook.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/generators/ebook.js b/lib/generators/ebook.js index e9ca20c..eb84df8 100644 --- a/lib/generators/ebook.js +++ b/lib/generators/ebook.js @@ -14,6 +14,9 @@ var Generator = function(book, format) { // eBook format this.ebookFormat = format; + // Resources namespace + this.namespace = "ebook"; + // Styles to use this.styles = _.compact(["ebook", this.ebookFormat]); |