File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ import React from 'react';
2
2
import { render } from 'react-dom' ;
3
3
import { DevTools , DebugPanel , LogMonitor } from 'redux-devtools/lib/react' ;
4
4
5
- /**
5
+ /*
6
6
* Puts Redux DevTools into a separate window.
7
7
* Based on https://gist.github.com/tlrobinson/1e63d15d3e5f33410ef7#gistcomment-1560218.
8
8
*/
9
9
export default function createDevToolsWindow ( store ) {
10
10
// Window name.
11
11
const name = 'Redux DevTools' ;
12
-
12
+
13
13
// Give it a name so it reuses the same window.
14
14
const win = window . open (
15
15
null ,
@@ -19,7 +19,7 @@ export default function createDevToolsWindow(store) {
19
19
20
20
// Reload in case it's reusing the same window with the old content.
21
21
win . location . reload ( ) ;
22
-
22
+
23
23
// Set visible Window title.
24
24
win . document . title = name ;
25
25
You can’t perform that action at this time.
0 commit comments