Skip to content

Commit

Permalink
Update my name in most places
Browse files Browse the repository at this point in the history
  • Loading branch information
sophiebits committed Sep 8, 2017
1 parent 8db2e11 commit 2aa4988
Show file tree
Hide file tree
Showing 14 changed files with 20 additions and 18 deletions.
6 changes: 3 additions & 3 deletions docs/_data/authors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ schrockn:
sebmarkbage:
name: Sebastian Markbåge
url: https://twitter.com/sebmarkbage
spicyj:
name: Ben Alpert
url: http://benalpert.com
sophiebits:
name: Sophie Alpert
url: https://sophiealpert.com
steveluscher:
name: Steven Luscher
url: https://twitter.com/steveluscher
Expand Down
2 changes: 1 addition & 1 deletion docs/_posts/2014-02-16-react-v0.9-rc1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: React v0.9 RC
author: spicyj
author: sophiebits
---

We're almost ready to release React v0.9! We're posting a release candidate so that you can test your apps on it; we'd much prefer to find show-stopping bugs now rather than after we release.
Expand Down
2 changes: 1 addition & 1 deletion docs/_posts/2014-02-20-react-v0.9.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: React v0.9
author: spicyj
author: sophiebits
---

I'm excited to announce that today we're releasing React v0.9, which incorporates many bug fixes and several new features since the last release. This release contains almost four months of work, including over 800 commits from over 70 committers!
Expand Down
2 changes: 1 addition & 1 deletion docs/_posts/2015-03-10-react-v0.13.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "React v0.13"
author: spicyj
author: sophiebits
---

Today, we're happy to release React v0.13!
Expand Down
2 changes: 1 addition & 1 deletion docs/_posts/2015-03-26-introducing-react-native.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Introducing React Native"
author: spicyj
author: sophiebits
---

In January at React.js Conf, we announced React Native, a new framework for building native apps using React. We're happy to announce that we're open-sourcing React Native and you can start building your apps with it today.
Expand Down
2 changes: 1 addition & 1 deletion docs/_posts/2015-07-03-react-v0.14-beta-1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: React v0.14 Beta 1
author: spicyj
author: sophiebits
---

This week, many people in the React community are at [ReactEurope](https://www.react-europe.org/) in the beautiful (and very warm) city of Paris, the second React conference that's been held to date. At our last conference, we released the first beta of React 0.13, and we figured we'd do the same today with our first beta of React 0.14, giving you something to play with if you're not at the conference or you're looking for something to do on the way home.
Expand Down
2 changes: 1 addition & 1 deletion docs/_posts/2015-09-02-new-react-developer-tools.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "New React Developer Tools"
layout: post
author: spicyj
author: sophiebits
---

A month ago, we [posted a beta](/react/blog/2015/08/03/new-react-devtools-beta.html) of the new React developer tools. Today, we're releasing the first stable version of the new devtools. We're calling it version 0.14, but it's a full rewrite so we think of it more like a 2.0 release.
Expand Down
2 changes: 1 addition & 1 deletion docs/_posts/2015-09-10-react-v0.14-rc1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "React v0.14 Release Candidate"
author: spicyj
author: sophiebits
---

We’re happy to announce our first release candidate for React 0.14! We gave you a [sneak peek in July](/react/blog/2015/07/03/react-v0.14-beta-1.html) at the upcoming changes but we’ve now stabilized the release more and we’d love for you to try it out before we release the final version.
Expand Down
2 changes: 1 addition & 1 deletion docs/_posts/2015-10-07-react-v0.14.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "React v0.14"
author: spicyj
author: sophiebits
---

We’re happy to announce the release of React 0.14 today! This release has a few major changes, primarily designed to simplify the code you write every day and to better support environments like React Native.
Expand Down
2 changes: 1 addition & 1 deletion docs/_posts/2015-12-29-react-v0.14.4.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "React v0.14.4"
author: spicyj
author: sophiebits
---

Happy December! We have a minor point release today. It has just a few small bug fixes.
Expand Down
2 changes: 1 addition & 1 deletion docs/_posts/2016-01-12-discontinuing-ie8-support.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Discontinuing IE 8 Support in React DOM"
author: spicyj
author: sophiebits
---

Since its 2013 release, React has supported all popular browsers, including Internet Explorer 8 and above. We handle normalizing many quirks present in old browser versions, including event system differences, so that your app code doesn't have to worry about most browser bugs.
Expand Down
5 changes: 3 additions & 2 deletions src/renderers/dom/fiber/wrappers/ReactDOMFiberTextarea.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@ var ReactDOMTextarea = {
// Always set children to the same thing. In IE9, the selection range will
// get reset if `textContent` is mutated. We could add a check in setTextContent
// to only set the value if/when the value differs from the node value (which would
// completely solve this IE9 bug), but Sebastian+Ben seemed to like this solution.
// The value can be a boolean or object so that's why it's forced to be a string.
// completely solve this IE9 bug), but Sebastian+Sophie seemed to like this
// solution. The value can be a boolean or object so that's why it's forced
// to be a string.
var hostProps = Object.assign({}, props, {
value: undefined,
defaultValue: undefined,
Expand Down
2 changes: 1 addition & 1 deletion src/renderers/dom/stack/client/DOMLazyTree.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var setTextContent = require('setTextContent');
* In other browsers, doing so is slower or neutral compared to the other order
* (in Firefox, twice as slow) so we only do this inversion in IE.
*
* See https://github.com/spicyj/innerhtml-vs-createelement-vs-clonenode.
* See https://github.com/sophiebits/innerhtml-vs-createelement-vs-clonenode.
*/
var enableLazy =
(typeof document !== 'undefined' &&
Expand Down
5 changes: 3 additions & 2 deletions src/renderers/dom/stack/client/wrappers/ReactDOMTextarea.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ var ReactDOMTextarea = {
// Always set children to the same thing. In IE9, the selection range will
// get reset if `textContent` is mutated. We could add a check in setTextContent
// to only set the value if/when the value differs from the node value (which would
// completely solve this IE9 bug), but Sebastian+Ben seemed to like this solution.
// The value can be a boolean or object so that's why it's forced to be a string.
// completely solve this IE9 bug), but Sebastian+Sophie seemed to like this
// solution. The value can be a boolean or object so that's why it's forced
// to be a string.
var hostProps = Object.assign({}, props, {
value: undefined,
defaultValue: undefined,
Expand Down

0 comments on commit 2aa4988

Please sign in to comment.