Commit Graph
15395 Commits
Author SHA1 Message Date
Paul O’Shannessy 8dfdd1d106 Make travis quieter on IRC 2013-12-09 16:03:47 -08:00
Paul O’Shannessy 80e0e2a13f Clean trailing space and lint 2013-12-09 15:54:16 -08:00
Paul O’Shannessy 5c65abfbac Merge remote-tracking branch 'syranide/textarearows' 2013-12-09 15:51:38 -08:00
Paul O’Shannessy 904cf15972 Merge pull request #646 from spicyj/lint2
Fix lint error (unused variable)
2013-12-09 15:49:02 -08:00
Brian Cooke 42dee34146 Update highlighted lines in tutorial
Minor issue, but I found it distracting that the highlighted lines were not accurate. I *believe* this fixes them up.
2013-12-09 15:16:37 -08:00
Ben Alpert 277abbfe7b Fix lint error (unused variable) 2013-12-09 12:29:03 -08:00
Thomas Aylott 00c8160f8e Merge pull request #628 from subtleGradient/subtlegradient/travis-task-cleanup
add browser testing to travis
2013-12-09 12:19:33 -08:00
Thomas Aylott feeebfbc51 removed complexity report until it's fixed 2013-12-09 14:55:21 -05:00
Thomas Aylott 55f50ca4d1 enable code coverage and code complexity reports 2013-12-09 14:55:21 -05:00
Thomas Aylott 0c366ce648 fix lint 2013-12-09 14:55:21 -05:00
Thomas Aylott 1b477fa40c move sauce labs config out of the Gruntfile 2013-12-09 14:55:21 -05:00
Thomas Aylott a41c20d43b sets each IE separately for now 2013-12-09 14:55:20 -05:00
Thomas Aylott fe8008e67c PICK ALL THE NITS!!!1! 2013-12-09 14:55:20 -05:00
Thomas Aylott 4af362b751 combine iOS and IE matrix tests 2013-12-09 14:55:20 -05:00
Thomas Aylott 8e3cb7bd9d tests fail in Safai now. unblocking for now.
Add these back in as build blockers once those issues are fixed.
2013-12-09 14:55:20 -05:00
Thomas Aylott c6f99c3a84 iOS is failing again. Will debug separately 2013-12-09 14:55:20 -05:00
Thomas Aylott b8ee94d999 define public saucelabs info for everything to use 2013-12-09 14:55:20 -05:00
Thomas Aylott 3308137d8d run tests in old iOS, but allow failures 2013-12-09 14:55:20 -05:00
Thomas Aylott e944b68e8c new grunt test:full task tests in many browsers
Moved the travis specific stuff back into the travis file
2013-12-09 14:55:20 -05:00
Thomas Aylott e560229c83 secure tokens aren't available for pull requests
Now you can use the saucelabs jazz locally also.
2013-12-09 14:55:20 -05:00
Thomas Aylott 18459deb77 enable IE browser testing in travis 2013-12-09 14:55:20 -05:00
Thomas Aylott a13bd1e251 simplify travis script 2013-12-09 14:55:20 -05:00
Ben Alpert 7325189890 Fix scrollLeft/scrollTop warning in latest Chrome
Chrome gives the warnings

```
body.scrollLeft is deprecated in strict mode. Please use 'documentElement.scrollLeft' if in strict mode and 'body.scrollLeft' only if in quirks mode.
body.scrollTop is deprecated in strict mode. Please use 'documentElement.scrollTop' if in strict mode and 'body.scrollTop' only if in quirks mode.
```

the first time getUnboundedScrollPosition is invoked. This fixes it. (All modern browsers support `pageYOffset`; IE 8 doesn't but works properly with `document.documentElement.scrollTop` except in quirks mode which React doesn't support.)
2013-12-07 15:57:23 -08:00
Paul O’Shannessy 153b75f186 Bump version to 0.9.0-alpha
This is trunk, which will be 0.9. We'll have to cherry-pick this whole
thing into a 0.8 branch.
2013-12-06 15:11:25 -08:00
Paul O’Shannessy a42b61fa85 Fix botched rebase 2013-12-06 15:10:57 -08:00
Paul O’Shannessy ce0f244c54 Move npm-react-core to npm-react, fix tasks accordingly 2013-12-06 15:10:15 -08:00
Paul O’Shannessy 9fdf589976 Update react package readme 2013-12-06 12:03:16 -08:00
petehunt ef339c9cc4 Version bump, make tests work 2013-12-06 11:56:30 -08:00
petehunt e5c4a3c7d5 update README 2013-12-06 11:56:30 -08:00
petehunt 036e621467 version bump to 0.8 to get on top of react.js 2013-12-06 11:56:30 -08:00
petehunt 0b97c6438e rename to with associated warnings 2013-12-06 11:56:30 -08:00
petehunt 6269cbf482 rename to with associated warnings 2013-12-06 11:56:30 -08:00
petehunt 82f211f6b8 revert muffinize :( 2013-12-06 11:56:30 -08:00
petehunt 90e2258791 response to code review 2013-12-06 11:56:30 -08:00
petehunt d197992dc8 update npm-react-core package.json 2013-12-06 11:56:30 -08:00
Paul O’Shannessy 9162cb8abe react-core npm module 2013-12-06 11:56:29 -08:00
petehunt e839405202 muffinification 2013-12-06 11:56:29 -08:00
petehunt 5466d0a063 first work: __DEV__
fix invariant

Get browserify working

remove dead code elimination step since it is not needed due to minifier

use industry standard NODE_ENV
2013-12-06 11:56:29 -08:00
Paul O’Shannessy 9270d3d56e Merge pull request #592 from spicyj/guard-fn
ReactErrorUtils: In prod, just return the original
2013-12-06 11:31:02 -08:00
Cartas 7d8190f56e Updated the animation-fix to account for transitionEnter being false. 2013-12-06 15:37:38 +01:00
Cartas c313a1045d Nodes that have had their child removed already, but then get given a new one no longer bug-out.
In the case of having an animated node which is, after the leave-transition has been activated, then re-added in a render call causes React to 'break'.  This is especially noticeable if you spam to removal and re-addition of an item in a ReactTransitionGroup.

This fix simply stops the leave transition and restarts the enter transition.
2013-12-06 14:46:33 +01:00
Ben Alpert 1be9a9e986 Bump version of wd
wd 0.2.2 gives `TypeError: Cannot call method 'jsCondition' of undefined` since #551; 0.2.6 is the latest and works so switch to that.
2013-12-05 17:13:52 -08:00
Paul Shen 12e765dd27 Revert "Don't mutate passed-in props"
This reverts https://github.com/facebook/react/pull/576

This approach mutates the default props for the instance on each update,
which causes incorrect behavior. discussed with @balpert. can look into
cloning but this unbreaks.
2013-12-05 16:53:43 -08:00
Paul O’Shannessy a7f6082c9c Merge pull request #636 from cpojer/rest-parameters-react
Add more useful ES6 transforms to jsx-internal.
2013-12-05 16:47:31 -08:00
Paul O’Shannessy 2ebbbc5145 Followup fix for lint 2013-12-05 15:55:49 -08:00
Paul O’Shannessy 7db8f818bc Merge remote-tracking branch 'spicyj/depth-not-owner' 2013-12-05 15:51:39 -08:00
Thomas Aylott 55e3b64ff4 Merge pull request #635 from subtleGradient/subtlegradient/fixes-webdriver-test
fixes webdriver issues
2013-12-05 14:55:52 -08:00
Thomas Aylott d035268c41 Merge pull request #617 from subtleGradient/subtlegradient/complexity-task
NEW `grunt complexity` reporting task
2013-12-05 14:55:17 -08:00
Ben Alpert d0883c8cc7 Use depth (not owner) to check for root components
Fixes #557.
2013-12-05 13:36:29 -08:00
Thomas Aylott 2807202ee7 bump webdriver timeouts
fixes #634
fixes #551
2013-12-05 16:27:26 -05:00