summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-plugin-theme-default/src/index.js
diff options
context:
space:
mode:
authorSamy Pesse <samypesse@gmail.com>2016-09-25 17:44:08 +0200
committerSamy Pesse <samypesse@gmail.com>2016-09-25 17:44:08 +0200
commite46cd78f803891dfc8c304ea8ec4bc813ad16b5b (patch)
tree7c3711581cb151fc58b186ea45a8f7f691d190e7 /packages/gitbook-plugin-theme-default/src/index.js
parentfab88bb47e71ad47c928198ddbf7a4d0527e81bb (diff)
downloadgitbook-e46cd78f803891dfc8c304ea8ec4bc813ad16b5b.zip
gitbook-e46cd78f803891dfc8c304ea8ec4bc813ad16b5b.tar.gz
gitbook-e46cd78f803891dfc8c304ea8ec4bc813ad16b5b.tar.bz2
Fix core reducer destroying other reducers
Diffstat (limited to 'packages/gitbook-plugin-theme-default/src/index.js')
-rw-r--r--packages/gitbook-plugin-theme-default/src/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/gitbook-plugin-theme-default/src/index.js b/packages/gitbook-plugin-theme-default/src/index.js
index 4eed252..64d4433 100644
--- a/packages/gitbook-plugin-theme-default/src/index.js
+++ b/packages/gitbook-plugin-theme-default/src/index.js
@@ -24,7 +24,7 @@ let ThemeBody = React.createClass({
<GitBook.Head
title={page.title}
titleTemplate="%s - GitBook" />
- <GitBook.ImportCSS href="gitbook/gitbook-plugin-theme-default/theme.css" />
+ <GitBook.ImportCSS href="gitbook/theme.css" />
<GitBook.FlexBox>
<GitBook.FlexLayout>
@@ -45,7 +45,7 @@ let ThemeBody = React.createClass({
});
ThemeBody = GitBook.connect(ThemeBody, ({page, summary, sidebar}) => {
- console.log('connect', sidebar.toJS())
+ console.log('connect!');
return { page, summary, sidebar };
});