Liz
17f8e947fb
👏 designers are friends, not fodder for jokes ( #8523 )
2016-12-07 15:09:37 -08:00
Brandon Dail
33198b78c5
Merge pull request #8476 from AlanBreck/patch-1
...
Update reference-react.md
2016-12-02 09:16:39 -06:00
lucas
01eb94f04b
Add return to render
2016-12-01 19:21:40 -03:00
Jacob Lamont
469d3c6461
Update reference-react.md
2016-12-01 14:35:48 -05:00
cloudy1
150e4e8be6
Update tutorial.md ( #8328 )
...
* Update tutorial.md
fix "unknown: Unexpected token" in "codepen.io".
* tweaks per suggestion
2016-11-29 13:00:33 -08:00
Andrew Clark
ce3b7ca475
Add a document on higher-order components ( #7869 )
2016-11-29 10:47:54 -08:00
Fatih
2c17f47ac2
fix typo 'miss-configured' to 'misconfigured' ( #8412 )
2016-11-24 14:52:53 +00:00
brillout
8d291e91e6
remove dead link ( #8411 )
2016-11-24 14:35:48 +00:00
Richard Maisano
b59fb796ea
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.
2016-11-22 18:50:11 +00:00
Dan Abramov
f686218268
Revert "Stop relying on variable hoisting" ( #8381 )
2016-11-22 15:19:45 +00:00
Linus Unnebäck
93042c277e
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.
2016-11-22 15:18:10 +00:00
Mikhail Osher
e958cdbd36
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.
2016-11-22 15:01:23 +00:00
Simen Bekkhus
e64510ab21
Fix link to PureComponent in docs ( #8375 )
2016-11-22 11:09:07 +00:00
Michael Sinov
501ac150f6
update react-without-es6.md ( #8351 )
2016-11-19 18:19:16 +00:00
Dan Abramov
12ef47ba8f
Merge pull request #8346 from shubheksha/docs/improve-state-and-lifecycle
...
Improved sections of state and lifecycle docs
2016-11-18 18:24:27 +00:00
Dan Abramov
a0044be99d
Minor changes, make it more verbose
2016-11-18 18:24:15 +00:00
Shubheksha Jalan
730dae1df6
Improved sections of state and lifecycle docs
2016-11-18 22:14:27 +05:30
Dan Abramov
57f0cf376f
Merge pull request #8345 from shubheksha/docs/improve-introducing-jsx
...
Improved some sections of the introducing JSX docs
2016-11-18 16:20:48 +00:00
Dan Abramov
c47340acfb
Small nit: add a sentence about readability back
2016-11-18 16:20:17 +00:00
Shubheksha Jalan
e4432c7f76
Improved some sections of the introducing JSX docs
2016-11-18 21:09:34 +05:30
Dan Abramov
919aa36d69
Merge pull request #8339 from nolanlawson/patch-1
...
Update 2016-11-16-react-v15.4.0.md
2016-11-18 12:27:16 +00:00
Dan Abramov
1c861a0d48
Merge pull request #8332 from gaearon/prod-dev
...
[Docs] Expand Installation and clarify why use bundlers
2016-11-18 12:26:22 +00:00
Dan Abramov
0b1d56399b
Nits
2016-11-18 12:26:06 +00:00
Dan Abramov
c91cc4d11a
Nit
2016-11-18 12:25:23 +00:00
Nolan Lawson
1ff4158fa0
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.
2016-11-17 15:53:41 -08:00
Kevin Lacker
02966c7945
add link to useful doc
2016-11-17 10:49:02 -08:00
Dan Abramov
3d52856bb6
Update installation instructions on the blog
2016-11-17 16:05:49 +00:00
Dan Abramov
db140c887f
Explain Installation in more detail
2016-11-17 15:55:56 +00:00
Dan Abramov
862cedee94
Merge pull request #8317 from marcysutton/master
...
docs(forms): add missing labels to forms doc
2016-11-17 14:25:03 +00:00
Dan Abramov
3186a8b984
Tweak examples
2016-11-17 14:23:20 +00:00
Kevin Lacker
ad347a3b92
include the version number in the header ( #8315 )
2016-11-16 16:26:21 -08:00
Marcy Sutton
e08be27b0c
fix(a11y): add missing labels to forms doc
...
Showing how to create a form without labeling inputs is an accessibility anti-pattern. This change adds labels to the examples to address that. Codepen may still need to be updated depending on how that example is created.
2016-11-16 14:32:42 -08:00
Dave Voyles
b20b99eb26
Clarity on constructor of Board object for tutorial.md ( #8224 )
...
* Update tutorial.md
Is it possible to be more clear here?
This implies that we are removing the constructor from GAME, and not board (which is what I believe the author is trying to say).
It took me several reads to understand.
With this edit, it is now clear that the adjustment is being made to -Board- and not to -Game-
* also remove "for Board earlier"
2016-11-16 13:24:45 -08:00
Tanner
6cbdf90f19
Remove spread operator ( #8273 )
...
* Remove spread operator
I believe what was meant here was to express that you would create the new player object with all the previous properties of the existing player object in addition to now updating the score value. That being said, this is a simple example, and the player object clearly has no other values. Objects are not (by default) iterable using this operator, so this little piece does more harm than good. I believe the new example to be much clearer.
* Using Object.assign()
* Tweak wording
2016-11-16 11:59:16 -08:00
tomocchino
d1a003ee72
Update website for 15.4.0
...
(cherry picked from commit 5ce8853ccb )
2016-11-16 14:51:47 +00:00
Dan Abramov
e8c07b0a45
Add 15.4.0 blog post
2016-11-16 14:36:20 +00:00
Brandon Dail
024f62ecfe
Merge pull request #8277 from qiuyuntao/master
...
docs: delete unnecessary brackets
2016-11-14 17:37:02 -06:00
Anastasia A
3a7b3b070b
Update reference-react-dom.md
...
Add missing closing bracket
2016-11-14 10:33:07 +03:00
yuntao.qyt
41b4d3958c
docs: delete unnecessary brackets
2016-11-13 16:29:18 +08:00
Samuel Scheiderich
9d201918bf
Add freenode #reactjs link to support.md ( #8270 )
...
* Add freenode #reactjs link to support.md
* Changed irc link to http webchat link.
2016-11-11 13:21:46 -08:00
Michele Bertoli
53e45e78e4
Make the Shallow Rendering example clearer ( #8269 )
...
* Make the Shallow Rendering example clearer
I was reading through the documentation, and I found that the `render` call on the `renderer` was missing.
* Use a regular function to define MyComponent
2016-11-11 15:34:11 +00:00
Shuhei Kagawa
fa4710fe51
Correct a method param in Implementation Notes ( #8252 )
2016-11-10 14:19:27 +00:00
Satoshi Nakajima
3e708497d2
Replaced old refs with new callback refs ( #8254 )
2016-11-10 14:13:56 +00:00
Arni Fannar
f4059e5e5b
Update refs-and-the-dom.md ( #8250 )
...
Since a lot of projects use [airbnb eslint config](https://www.npmjs.com/package/eslint-config-airbnb ) where [this rule](http://eslint.org/docs/rules/no-return-assign ) is enabled (and its a good rule) some people might get confused when they are trying this out in their project.
2016-11-09 14:45:21 -08:00
Guilherme Oenning
b847226ec4
fix broken docs links ( #8163 )
...
* fix broken links to outdated code
* another broken links to outdated code
* update hash commit & folder structure to current
2016-11-09 18:06:35 +00:00
Ville Immonen
3668a2e678
Remove string ref from function component example ( #8244 )
...
Refs can't be attached to stateless functional components.
2016-11-09 16:38:36 +00:00
Kevin Lacker
3a09f4bf30
forms breakup
2016-11-08 21:38:03 +00:00
Samer Buna
e25d899d23
Remove unnecessary findDOMNode calls ( #8198 )
2016-11-08 21:15:01 +00:00
Nate
2317fcaccb
Fix typos in Shallow Rendering Documentation ( #8226 )
...
* Fix typos in Shallow Rendering Documentation
* Fix another occurrence
2016-11-08 20:29:27 +00:00
Kevin Lacker
d885894c6e
Docs: add a bunch of redirects ( #8137 )
...
* add a bunch of redirects
* add more redirects
2016-11-08 19:32:02 +00:00