Skip to content

Commit 76ddafc

Browse files
committed
Fix some linting errors...
1 parent 053560b commit 76ddafc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/real-world/createDevToolsWindow.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ import React from 'react';
22
import { render } from 'react-dom';
33
import { DevTools, DebugPanel, LogMonitor } from 'redux-devtools/lib/react';
44

5-
/**
5+
/*
66
* Puts Redux DevTools into a separate window.
77
* Based on https://gist.github.com/tlrobinson/1e63d15d3e5f33410ef7#gistcomment-1560218.
88
*/
99
export default function createDevToolsWindow(store) {
1010
// Window name.
1111
const name = 'Redux DevTools';
12-
12+
1313
// Give it a name so it reuses the same window.
1414
const win = window.open(
1515
null,
@@ -19,7 +19,7 @@ export default function createDevToolsWindow(store) {
1919

2020
// Reload in case it's reusing the same window with the old content.
2121
win.location.reload();
22-
22+
2323
// Set visible Window title.
2424
win.document.title = name;
2525

0 commit comments

Comments
 (0)