Bruno Heridet
ca173ef961
docs(hoc): fix typo Rambda → Ramda ( #8712 )
8 years ago
Brandon Dail
55568c8c57
Point all Webpack links to 1.x documentation ( #8697 )
* Point all Webpack links to 1.x documentation
* Add back webpack production guide, add warning
8 years ago
Murtaza Haveliwala
290cfc1afc
Update rendering-elements.md
Updating text to be in sync with sample html
8 years ago
Murtaza Haveliwala
081ba8edbc
Updated hello world explanation message ( #8703 )
Output text in explanation now in sync with code sample
8 years ago
Piotr Czajkowski
095b1ec6f7
"Don't Mutate the Original Component" example and description mismatch ( #8695 )
8 years ago
Piotr Czajkowski
76a149320b
Higher-Order Components docs withSubscription() example fix ( #8694 )
8 years ago
Andre Giron
4dd346b923
Fix typos ( #8632 )
* Fix typos
* Put back x in Latinx
8 years ago
Joel Sequeira
b272da5d87
Fix typo in Proposing a Change section in how-to-contribute.md ( #8498 )
* Fix typo in Proposing a Change section in how-to-contribute.md
Not sure if it was actually intended or was a typo but changed 'If you intend to change to the public API' --> 'If you intend to make a change to the public API'
* Simplify
8 years ago
Mateusz Burzyński
54f955de26
[Docs] Fixed anchor links in Animations section ( #8453 )
8 years ago
Van der Auwermeulen Grégoire
3b671d1d1b
Update state-and-lifecycle.md ( #8424 )
* Update state-and-lifecycle.md
Isn't clock state and props the same in this example?
* Clarify
8 years ago
Devinsuit
de7e8a4709
Update blog post link ( #8421 )
8 years ago
Mojtaba Dashtinejad
62ea0290ed
[docs] Add a note about componentWillReceiveProps ( #8234 )
* Component Lifecycle In Depth documentation
* first steps to improve react component reference
* improved react component reference
- remove the component-lifecycle-in-depth
* add a note for usage of ReactDOM.findDOMNode
* one note on componentWillReceiveProps
* remove old useless images for lifecycle docs
* Tweak wording
8 years ago
Dan Abramov
a1f22dd855
Nitpick: use FB style in doc
8 years ago
Karthik Chintapalli
49c4a363bc
Fixed stray text appearing on top of the navbar at small screen sizes ( #8681 )
8 years ago
Brian Vaughn
6a394f5dd3
Renamed React.js Conf to React Conf
8 years ago
Brian Vaughn
f91eb3323f
Merge pull request #8671 from bonham000/update-docs
update to codebase-overview.md
8 years ago
neeldeep
354d1170b0
Update conferences.md
8 years ago
Sean Smith
b31ab435ce
update to codebase-overview.md
8 years ago
gitanupam
a53d2acaf9
Changed webpack's hyperlink ( #8650 )
..to point to 2.x documentation instead of 1.x (and to be consistent with other links on the page)
8 years ago
gitanupam
864a2c76b8
'npm init' needed before installing react via npm. ( #8649 )
* 'npm init' needed before installing react via npm.
I was trying to install react in my django project directory and was getting warnings about package.json not being present. Started this SO post (http://stackoverflow.com/questions/41340909/npm-cant-find-package-json-when-installing-react/41340975#41340975 ) to figure it out. I think it'll be useful to others too if we add it in the documentation itself.
* Tweak instructions
8 years ago
Eric Pitcher
9f3ae7247e
Update conditional-rendering.md ( #8636 )
Stating the fact that component lifecycle methods will still fire as normal even though you return null from the render method.
8 years ago
comerc
e875fa0967
Fix casing typo in jsx-in-depth.md ( #8542 )
8 years ago
Chris
dd5a665d42
update example to use `this.state` ( #8425 )
- In the previous example, the code works even without using bind(this) in the constructor.
- the reason being handleClick doesn't even use `this` and its just calling the global function alert.
- this change make use of this via access this.state.
8 years ago
Liz
081c20f66f
👏 designers are friends, not fodder for jokes ( #8523 )
8 years ago
Brandon Dail
0ed6236931
Merge pull request #8476 from AlanBreck/patch-1
Update reference-react.md
8 years ago
lucas
ab12949031
Add return to render
8 years ago
Jacob Lamont
68b9b2037c
Update reference-react.md
8 years ago
cloudy1
d7b1599f88
Update tutorial.md ( #8328 )
* Update tutorial.md
fix "unknown: Unexpected token" in "codepen.io".
* tweaks per suggestion
8 years ago
Andrew Clark
e3d37fdb90
Add a document on higher-order components ( #7869 )
8 years ago
Fatih
e05934e423
fix typo 'miss-configured' to 'misconfigured' ( #8412 )
8 years ago
brillout
cdf144d54b
remove dead link ( #8411 )
8 years ago
Richard Maisano
4851bd7cec
Add a couple missing SVG tags to DOM Elements docs ( #8383 )
My first contribution to React!
While upgrading a React project, I found some suspect SVG that needed updating, so I dug in after checking the docs. I knew that support for some SVG properties had been added (namely `xmlns` and `xmlnsXlink`), but I noticed them missing from the reference's attribute list. This pull request updates `reference-dom-elements.md` by adding said properties.
8 years ago
Dan Abramov
3d1d0e44ac
Revert "Stop relying on variable hoisting" ( #8381 )
8 years ago
Linus Unnebäck
cdca1edf90
Stop relying on variable hoisting ( #8380 )
Only declare the variable once in this scope, instead of declaring them multiple times in the same scope.
This fixes #8318 , even though it might technically be a shortcoming in Rollup.
8 years ago
Mikhail Osher
69162fc97a
Fix object spread operator ( #8378 )
Object spread operator performs shallow copy of object's arguments, so it should be placed before new properties are assigned.
8 years ago
Simen Bekkhus
5df573a518
Fix link to `PureComponent` in docs ( #8375 )
8 years ago
Michael Sinov
d00d8c81cd
update react-without-es6.md ( #8351 )
8 years ago
Dan Abramov
95f34e9bf3
Merge pull request #8346 from shubheksha/docs/improve-state-and-lifecycle
Improved sections of state and lifecycle docs
8 years ago
Dan Abramov
9c9ecee640
Minor changes, make it more verbose
8 years ago
Shubheksha Jalan
a409b4df32
Improved sections of state and lifecycle docs
8 years ago
Dan Abramov
48ef385cb0
Merge pull request #8345 from shubheksha/docs/improve-introducing-jsx
Improved some sections of the introducing JSX docs
8 years ago
Dan Abramov
5c995eebba
Small nit: add a sentence about readability back
8 years ago
Shubheksha Jalan
448aa90482
Improved some sections of the introducing JSX docs
8 years ago
Dan Abramov
dd33f19ef0
Merge pull request #8339 from nolanlawson/patch-1
Update 2016-11-16-react-v15.4.0.md
8 years ago
Dan Abramov
5aea26b4b3
Merge pull request #8332 from gaearon/prod-dev
[Docs] Expand Installation and clarify why use bundlers
8 years ago
Dan Abramov
36564ab0fa
Nits
8 years ago
Dan Abramov
0f5021783a
Nit
8 years ago
Nolan Lawson
1d3156a845
Update 2016-11-16-react-v15.4.0.md
Edge and IE11 both show user marks and measures in the Dev Tools, so it's technically not accurate to say that only Chrome has this feature.
8 years ago
Kevin Lacker
ba8004f607
add link to useful doc
8 years ago
Dan Abramov
43563e4aff
Update installation instructions on the blog
8 years ago