File tree 2 files changed +4
-3
lines changed 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ var HeaderLinks = React.createClass({
23
23
< a
24
24
key = { link . section }
25
25
href = { link . href }
26
- target = { link . href . slice ( 0 , 4 ) === 'http' && '_blank' }
27
- className = { link . section === this . props . section && 'active' } >
26
+ target = { link . href . slice ( 0 , 4 ) === 'http' ? '_blank' : null }
27
+ className = { link . section === this . props . section ? 'active' : null } >
28
28
{ link . text }
29
29
</ a >
30
30
) }
Original file line number Diff line number Diff line change @@ -188,7 +188,8 @@ var index = React.createClass({
188
188
but also smoothly follow references between them. While typical
189
189
REST APIs require loading from multiple URLs, GraphQL APIs get
190
190
all the data your app needs in a single request. Apps using
191
- GraphQL are quick even on slow mobile network connections.</ p >
191
+ GraphQL can be quick even on slow mobile
192
+ network connections.</ p >
192
193
</ div >
193
194
< div className = "app-to-server" aria-hidden >
194
195
< img src = "/img/phone.svg" width = "496" height = "440" />
You can’t perform that action at this time.
0 commit comments