File tree Expand file tree Collapse file tree 6 files changed +22
-20
lines changed Expand file tree Collapse file tree 6 files changed +22
-20
lines changed Original file line number Diff line number Diff line change 9
9
"version" : " 0.9.0" ,
10
10
"repository" : {
11
11
"type" : " git" ,
12
- "url" : " https://github.com/erikras /react-redux-universal-hot-example"
12
+ "url" : " https://github.com/bertho-zero /react-redux-universal-hot-example"
13
13
},
14
- "homepage" : " https://github.com/erikras /react-redux-universal-hot-example" ,
14
+ "homepage" : " https://github.com/bertho-zero /react-redux-universal-hot-example" ,
15
15
"keywords" : [
16
16
" react" ,
17
17
" isomorphic" ,
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ const GithubButton = props => {
14
14
title = { `github-button-${ user } -${ repo } -${ type } ` }
15
15
src = { src }
16
16
frameBorder = "0"
17
- allowTransparency = "true"
18
17
scrolling = "0"
19
18
width = { width }
20
19
height = { height }
Original file line number Diff line number Diff line change @@ -24,12 +24,16 @@ export default class About extends Component {
24
24
< Helmet title = "About Us" />
25
25
26
26
< p >
27
- This project was originally created by Erik Rasmussen (
27
+ This project is maintained by Kévin Berthommier (
28
+ < a href = "https://github.com/bertho-zero" target = "_blank" rel = "noopener noreferrer" >
29
+ @bertho-zero
30
+ </ a > ) and was originally created by Erik Rasmussen (
28
31
< a href = "https://twitter.com/erikras" target = "_blank" rel = "noopener noreferrer" >
29
32
@erikras
30
- </ a > ), but has since seen many contributions from the open source community. Thank you to{ ' ' }
33
+ </ a > ),< br />
34
+ but has since seen many contributions from the open source community. Thank you to{ ' ' }
31
35
< a
32
- href = "https://github.com/erikras /react-redux-universal-hot-example/graphs/contributors"
36
+ href = "https://github.com/bertho-zero /react-redux-universal-hot-example/graphs/contributors"
33
37
target = "_blank"
34
38
rel = "noopener noreferrer"
35
39
>
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ export default class App extends Component {
145
145
< NavItem
146
146
target = "_blank"
147
147
title = "View on Github"
148
- href = "https://github.com/erikras /react-redux-universal-hot-example"
148
+ href = "https://github.com/bertho-zero /react-redux-universal-hot-example"
149
149
>
150
150
< i className = "fa fa-github" />
151
151
</ NavItem >
@@ -171,17 +171,12 @@ export default class App extends Component {
171
171
< div className = "well text-center" >
172
172
Have questions? Ask for help{ ' ' }
173
173
< a
174
- href = "https://github.com/erikras /react-redux-universal-hot-example/issues"
174
+ href = "https://github.com/bertho-zero /react-redux-universal-hot-example/issues"
175
175
target = "_blank"
176
176
rel = "noopener noreferrer"
177
177
>
178
178
on Github
179
- </ a > { ' ' }
180
- or in the{ ' ' }
181
- < a href = "https://discord.gg/0ZcbPKXt5bZZb1Ko" target = "_blank" rel = "noopener noreferrer" >
182
- #react-redux-universal
183
- </ a > { ' ' }
184
- Discord channel.
179
+ </ a > .
185
180
</ div >
186
181
</ div >
187
182
) ;
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ export default class Home extends Component {
36
36
< p >
37
37
< a
38
38
className = { styles . github }
39
- href = "https://github.com/erikras /react-redux-universal-hot-example"
39
+ href = "https://github.com/bertho-zero /react-redux-universal-hot-example"
40
40
target = "_blank"
41
41
rel = "noopener noreferrer"
42
42
>
@@ -45,7 +45,7 @@ export default class Home extends Component {
45
45
</ p >
46
46
{ online && (
47
47
< GithubButton
48
- user = "erikras "
48
+ user = "bertho-zero "
49
49
repo = "react-redux-universal-hot-example"
50
50
type = "star"
51
51
width = { 160 }
@@ -56,7 +56,7 @@ export default class Home extends Component {
56
56
) }
57
57
{ online && (
58
58
< GithubButton
59
- user = "erikras "
59
+ user = "bertho-zero "
60
60
repo = "react-redux-universal-hot-example"
61
61
type = "fork"
62
62
width = { 160 }
@@ -67,9 +67,13 @@ export default class Home extends Component {
67
67
) }
68
68
69
69
< p className = { styles . humility } >
70
- Created and maintained by{ ' ' }
70
+ Created by{ ' ' }
71
71
< a href = "https://twitter.com/erikras" target = "_blank" rel = "noopener noreferrer" >
72
72
@erikras
73
+ </ a > { ' ' }
74
+ and maintained by{ ' ' }
75
+ < a href = "https://github.com/bertho-zero" target = "_blank" rel = "noopener noreferrer" >
76
+ @bertho-zero
73
77
</ a > .
74
78
</ p >
75
79
</ div >
Original file line number Diff line number Diff line change @@ -59,10 +59,10 @@ export default class Widgets extends Component {
59
59
</ h1 >
60
60
< Helmet title = "Widgets" />
61
61
< p >
62
- If you hit 'Reload Widgets ' on your browser, the data loading will take place on the server before the page is
62
+ If you hit 'Refresh ' on your browser, the data loading will take place on the browser after the page is
63
63
returned. If you navigated here from another page, the data was fetched from the client after the route
64
64
transition. This uses the decorator method < code > @provideHooks</ code > with the < code > defer</ code > key. To
65
- block a route transition until some data is loaded, use the < code > defer </ code > key. To always render before
65
+ block a route transition until some data is loaded, use the < code > fetch </ code > key. To always render before
66
66
loading data, even on the server, use < code > componentWillMount</ code > .
67
67
</ p >
68
68
< p > This widgets are stored in your session, so feel free to edit it and refresh.</ p >
You can’t perform that action at this time.
0 commit comments