Commit Graph

1021 Commits

Author SHA1 Message Date
Alex Boyd
83bf9de1a1 ref-08-reconciliation.md: grammar/punctuation fixes 2015-01-14 22:40:29 -07:00
Hou Chia
2f3716ba1e Update README.md insert comma
The file change inserts a missing comma.

Best,
Hou
2015-01-12 11:29:17 -08:00
chen
1d2d17bfdc Update 07-forms.md 2015-01-09 10:19:42 +08:00
Jason Bonta
1d4cbb439f suggesting the use of immutable js for comparisons 2015-01-07 10:46:50 -08:00
Paul O’Shannessy
a1e6b666c1 Merge pull request #2801 from jsfb/componentDidUpdate-docs
Update docs to indicate that componentDDidUpdate is fired after changes are flushed to the DOM.  Fix
2015-01-05 09:34:38 -08:00
Paul O’Shannessy
342700f65d Merge pull request #2791 from rickbeerendonk/patch-1
Update ref-09-glossary.md
2015-01-05 09:05:46 -08:00
Jim
48eddd101e Update docs to indicate that componentDDidUpdate is fired after changes are flushed to the DOM. Fixes #2796 2015-01-02 14:02:44 -08:00
Rick Beerendonk
a7aad17d87 Update ref-09-glossary.md
Minor grammatical fix.
2014-12-30 23:42:38 -05:00
Mihai Parparita
751e21a58e SyntheticEvent.timeStamp is a number, not a Date
Also makes the a few other attribute types use lowercase (primitive) naming, to be consistent.
2014-12-30 12:06:49 -08:00
Chitharanjan Das
1307460818 Update 02-displaying-data.md
Just a couple of minor grammatical fixes.
2014-12-30 10:49:44 +00:00
Roman Vanesyan
f0f274c3b6 Update ref-01-top-level-api.md
React isn't framework, it's library for UI!?
2014-12-24 14:39:37 +05:00
Paul O’Shannessy
0202a40de3 Merge pull request #2760 from alextsg/patch-3
Update 14-communicate-between-components.md for grammatical changes
2014-12-22 13:56:44 -08:00
Alexander Tseung
bcfbc87c84 Update 14-communicate-between-components.md 2014-12-21 00:14:34 -08:00
Alexander Tseung
f1c9861d90 Update 05-maximum-number-of-jsx-root-nodes.md 2014-12-20 23:59:34 -08:00
Peter Blazejewicz
506e431408 Fix conference year typo in blog post content 2014-12-19 23:06:24 +01:00
Paul O’Shannessy
5472668d0b Diversity Scholarship blog post 2014-12-19 13:22:23 -08:00
Paul O’Shannessy
e38a05b727 0.12.2 starter kit
(cherry picked from commit 6c5cb72cdc344e561fde6609b83c91f945127897)
2014-12-18 12:47:33 -08:00
Paul O’Shannessy
585f5c9756 v0.12.2 blog post
(cherry picked from commit 2f6a95d5a214bd0145c864604bc884c73ee6f865)
2014-12-18 12:47:32 -08:00
Paul O’Shannessy
dfd4e09c18 update docs for 0.12.2 changes
(cherry picked from commit e6e60c4fa848d1c9ce1349eff750cfa2faf156dc)
2014-12-18 12:47:32 -08:00
Harry Moreno
b2bb80d24b Added note for proper example display
jsfiddles weren't showing up for me. Upon further investigation I found that changing to http fixes the embedding.
2014-12-17 12:52:49 -08:00
Paul O’Shannessy
f6378f1ca0 Merge pull request #2718 from alextsg/patch-1
Update tutorial.md for grammatical changes
2014-12-16 09:48:23 -08:00
jeffmo
b382569436 Include 0.12.1 starter kit
(cherry picked from commit e9dde653413bd2f185cfdc855ca4d2c704b109ac)
2014-12-16 09:44:00 -08:00
Alexander Tseung
52dc9aec01 Update tutorial.md for grammatical changes
Update tutorial.md to improve grammatical parallelism in features list. Also added periods to follow first item's syntax.

BEFORE: "Live updates: as other users comment we'll pop them into the comment view in real time"
AFTER: "Live updates: other users' comments are popped into the comment view in real time."

BEFORE: "Markdown formatting: users can use Markdown to format their text"
AFTER: "Markdown formatting: users can use Markdown to format their text."
2014-12-15 23:43:26 -08:00
Bruno Škvorc
ff521a97b8 Update 02-displaying-data.md
Typo fix
2014-12-14 08:03:35 +01:00
Cam Song
54e0e9cdad Add Chinese translation of js-spread 2014-12-12 09:33:01 +08:00
Cam Song
4c42d3f40e Add Chinese translation of jsx-in-depth 2014-12-11 00:19:15 +08:00
Tim Schaub
0625baaf00 Add missing verb
This adds a missing verb in JSX-in-depth doc.
2014-12-08 15:08:57 -08:00
Ben Alpert
6f4c694ac0 Merge pull request #2672 from cookfront/master
The same problem in issue #2648
2014-12-06 23:50:43 -08:00
cookfront
83d5a4514d The same problem in issue #2648 2014-12-07 15:42:51 +08:00
Benjamin Keen
dbb62039e3 Update 10.6-update.md
Spelling fix.
2014-12-06 15:49:22 -08:00
Paul O’Shannessy
c6591c4532 Merge pull request #2635 from zpao/docs/props-state-clarification
[docs] Clarify when state may duplicate props
2014-12-03 11:24:21 -08:00
Paul O’Shannessy
e31d9f8d7c Merge pull request #2639 from zpao/own-jsfiddle
Own our fiddles so we can update them more easily
2014-12-03 11:24:08 -08:00
张敏
e693d3f321 In Transferring Props guide, Manual Transfer section will lead an error
```c
var FancyCheckbox = React.createClass({
  render: function() {
    var fancyClass = this.props.checked ? 'FancyChecked' : 'FancyUnchecked';
    return (
      <div className={fancyClass} onClick={this.props.onClick}>
        {this.props.children}
      </div>
    );
  }
});
React.render(
  <FancyCheckbox checked={true} onClick={console.log}>
    Hello world!
  </FancyCheckbox>,
  document.body
);
```

When click `Hello world!` will lead a `Uncaught TypeError: Illegal invocation` error
2014-12-03 17:28:55 +08:00
Paul O’Shannessy
b956ab7f50 Merge pull request #2615 from af/createElement-docs
Add top-level API docs section for React.createElement.
2014-12-02 11:19:26 -08:00
Paul O’Shannessy
103cb209a9 Merge pull request #2636 from zpao/docs/spread-assign-update
[docs] Remove generic spread, Object.assign  mentions
2014-12-02 11:10:33 -08:00
Paul O’Shannessy
5dd19ebd7b Merge pull request #2622 from rafd/patch-1
add note re: handling events in capture phase
2014-12-02 11:10:20 -08:00
Paul O’Shannessy
7a6c76796d Merge pull request #2623 from jbhatab/patch-1
Screencast interfacing react + backbone
2014-12-02 10:54:05 -08:00
Blaine Hatab
6aa8db4048 Screencast interfacing react + backbone 2014-12-02 10:49:16 -06:00
Paul O’Shannessy
27fbafae18 Own our fiddles so we can update them more easily 2014-12-01 19:33:43 -08:00
Paul O’Shannessy
4a010124ce Merge pull request #2616 from christianalfoni/patch-3
Adding link to wiki
2014-12-01 16:03:16 -08:00
Paul O’Shannessy
50c8e71ae9 [docs] Remove generic spread, Object.assign mentions 2014-12-01 13:54:26 -08:00
Paul O’Shannessy
83b3a909bd [docs] Clarify when state may duplicate props 2014-12-01 13:46:59 -08:00
Rafal Dittwald
373233c440 Update ref-05-events.md
use backticks and change example into its own sentence
2014-12-01 15:36:01 -05:00
Toru Kobayashi
495036f56f Fix addons documentation of development only part 2014-12-01 23:17:53 +09:00
Alexey Shamrin
44ee436eea fix typo in addons.update() $splice command help 2014-11-30 20:20:34 +03:00
Rafal Dittwald
d1fa368666 add note re: handling events in capture phase 2014-11-28 15:38:15 -05:00
Christian Alfoni
368fbbce83 Adding link to wiki
Based on conversation in https://github.com/facebook/react/pull/2501. A good place to guide people further in finding the complete set of tools needed to build an application.
2014-11-27 08:48:16 +01:00
Aaron Franks
0016277532 Add top-level API docs section for React.createElement. 2014-11-26 23:18:10 -08:00
Steven Luscher
d2a0a86ca9 Community #24: New Carousel link, spelled react-prism correctly, and removed the whale-speak. 2014-11-24 18:24:52 -08:00
Steven Luscher
8475eee7bc Wrote Community Roundup #24 2014-11-24 18:12:59 -08:00