Skip to content

Commit

Permalink
Fix eslint react/jsx-boolean-value err
Browse files Browse the repository at this point in the history
  • Loading branch information
jhen0409 committed Sep 29, 2015
1 parent 5e45c95 commit d71e2d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ npm install react-chrome-extension-boilerplate --dev
# start WebpackDevServer
npm run dev
```
* Allow `https://localhost:3000` connection (Because `injectpage` injected Github(https) pages, so `webpack-dev-server` procotol must be https.)
* Allow `https://localhost:3000` connections (Because `injectpage` injected Github(https) pages, so `webpack-dev-server` procotol must be https.)
* Load unpacked extensions with `./dev`

#### React/Flux hot reload
Expand Down
2 changes: 1 addition & 1 deletion app/todoapp/components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Header extends Component {
return (
<header className='header'>
<h1>todos</h1>
<TodoTextInput newTodo={true}
<TodoTextInput newTodo
onSave={this.handleSave.bind(this)}
placeholder='What needs to be done?' />
</header>
Expand Down

0 comments on commit d71e2d2

Please sign in to comment.