Skip to content

Commit

Permalink
fixed commit comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ritz078 committed Jun 25, 2016
1 parent 7daf2b1 commit 28487b6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,14 @@
"dependencies": {
"@kadira/react-split-pane": "^1.4.0",
"babel-runtime": "^6.5.0",
"classnames": "^2.2.5",
"deep-equal": "^1.0.1",
"fuse.js": "^2.2.0",
"fuzzysearch": "^1.0.3",
"json-stringify-safe": "^5.0.1",
"keycode": "^2.1.1",
"lodash.pick": "^4.2.1",
"mantra-core": "^1.6.1",
"qs": "^6.2.0",
"react-fuzzy": "^0.2.1",
"react-fuzzy": "^0.2.2",
"react-modal": "^1.2.1",
"redux": "^3.5.2"
},
Expand Down
7 changes: 1 addition & 6 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,7 @@ export default function (domNode, provider) {
...uiModule.reducers,
});

const reduxStore = createStore(reducer, (
typeof window === 'object' &&
typeof window.devToolsExtension !== 'undefined' &&
window.devToolsExtension &&
window.devToolsExtension()
));
const reduxStore = createStore(reducer);

const context = buildContext(reduxStore, domNode, provider);
const app = createApp(context);
Expand Down
2 changes: 2 additions & 0 deletions src/modules/ui/components/search_box.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@ import React from 'react';
import FuzzySearch from 'react-fuzzy';

import { features } from '../../../libs/key_events';
import { baseFonts } from './theme';

const searchBoxStyle = {
position: 'absolute',
backgroundColor: '#FFF',
top: '100px',
left: '50%',
marginLeft: '-215px',
...baseFonts
};

const formatStories = function (stories) {
Expand Down

0 comments on commit 28487b6

Please sign in to comment.