Skip to content

Commit

Permalink
[docs] Fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
zalmoxisus committed Feb 6, 2017
1 parent 16560d5 commit 5f4dd81
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/API/Methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Send a new action and state manually to be shown on the monitor. It's recommende
- `action` *String* (action type) or *Object* with required `type` key.
- `state` *any* - usually object to expand.
- [`options`] *Object* - [see the available options](Arguments.md).
- [`instanceId`] *String* - instance id for which to include the log.
- [`instanceId`] *String* - instance id for which to include the log. If not specified and not present in the `options` object, will be the first available instance.

<a id="listen"></a>
### listen(onMessage, instanceId)
Expand Down
5 changes: 2 additions & 3 deletions docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@

## Table of Contents
- [How to get it work](#how-to-get-it-work)
- [How to disable/enable it in production](#how-to-disableenable-it-in-production)
- [How to disable/enable it in production](#how-to-disable-it-in-production)
- [How to persist debug sessions across page reloads](#how-to-persist-debug-sessions-across-page-reloads)
- [How to open DevTools programmatically](#how-to-open-devtools-programmatically)
- [How to keep DevTools window focused all the time in a chrome panel](#how-to-open-devtools-programmatically)
- [How to keep DevTools window focused all the time in a chrome panel](#how-to-keep-devtools-window-focused-all-the-time-in-a-chrome-panel)
- [How to enable/disable errors notifying](#how-to-enabledisable-errors-notifying)
- [How to get it work with WebWorkers, React Native, hybrid, desktop and server side apps](#how-to-get-it-work-with-webworkers-react-native-hybrid-desktop-and-server-side-apps)
- [Keyboard shortcuts](#keyboard-shortcuts)
- [How to change keyboard shortcuts](#how-to-change-keyboard-shortcuts)

#### How to get it work
- Check the extension with [Counter](http://zalmoxisus.github.io/examples/counter/) or [TodoMVC](http://zalmoxisus.github.io/examples/todomvc/) demo.
Expand Down
2 changes: 1 addition & 1 deletion docs/Integrations.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Integrations for different languages and frameworks
# Integrations for js and non-js frameworks

Mostly functional:
- [Angular](#angular)
Expand Down
8 changes: 3 additions & 5 deletions docs/Troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Most likely you mutate the state. Check it by [adding `redux-immutable-state-inv

### It doesn't work with other store enhancers

Usually the extension's store enhancer should be last in the compose. When you're using `window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__` or `composeWithDevTools` helper you don't have to worry about the enhancers order. However some enhancers ([like `redux-batched-subscribe`](https://github.com/zalmoxisus/redux-devtools-extension/issues/261)) also have this requirement to be the last in the compose. In this case you can use it like so:
Usually the extension's store enhancer should be last in the compose. When you're using [`window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__`](/README.md#12-advanced-store-setup) or [`composeWithDevTools`](/README.md#13-use-redux-devtools-extension-package-from-npm) helper you don't have to worry about the enhancers order. However some enhancers ([like `redux-batched-subscribe`](https://github.com/zalmoxisus/redux-devtools-extension/issues/261)) also have this requirement to be the last in the compose. In this case you can use it like so:

```js
const store = createStore(reducer, preloadedState, compose(
Expand Down Expand Up @@ -76,12 +76,10 @@ React synthetic event cannot be reused for performance reason. So, it's not poss

### Symbols or other unserializable data not shown

To get data which cannot be serialized by `JSON.stringify`, use `serialize` parameter, setting `options` to `true`:
To get data which cannot be serialized by `JSON.stringify`, set [`serialize` parameter](/docs/API/Arguments.md#serialize):
```js
const store = Redux.createStore(reducer, window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__({
serialize: {
options: true
}
serialize: true
}));
```

Expand Down

0 comments on commit 5f4dd81

Please sign in to comment.