diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-10-06 23:04:20 +0200 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2016-10-06 23:04:20 +0200 |
commit | 1d291ff2f057b3d4360d38b27c36e75eddeebb09 (patch) | |
tree | 3b6418bfe897a889e1fa7eb4d0e1a361b5caf14e /packages/gitbook-plugin-search/src | |
parent | 58ae96b7f6a5cd3b7c1fd1d650fcaae4686f578d (diff) | |
download | gitbook-1d291ff2f057b3d4360d38b27c36e75eddeebb09.zip gitbook-1d291ff2f057b3d4360d38b27c36e75eddeebb09.tar.gz gitbook-1d291ff2f057b3d4360d38b27c36e75eddeebb09.tar.bz2 |
Fix style of toolbar and add title to it
Diffstat (limited to 'packages/gitbook-plugin-search/src')
-rw-r--r-- | packages/gitbook-plugin-search/src/actions/search.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/gitbook-plugin-search/src/actions/search.js b/packages/gitbook-plugin-search/src/actions/search.js index 6cea419..861db84 100644 --- a/packages/gitbook-plugin-search/src/actions/search.js +++ b/packages/gitbook-plugin-search/src/actions/search.js @@ -73,7 +73,6 @@ function handleQuery(q) { function refresh() { return (dispatch, getState) => { const q = getState().search.query; - console.log('refresh search with', q); if (q) { dispatch(handleQuery(q)); } |