Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix lint for eslint 1.7 #5236

Merged
merged 1 commit into from
Oct 23, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ var MAX_TOUCH_BANK = 20;
* }
*/
var touchHistory = {
touchBank: [ ],
touchBank: [],
numberActiveTouches: 0,
// If there is only one active touch, we remember its location. This prevents
// us having to loop through all of the touches all the time in the most
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ describe('ReactEmptyComponent', function() {
);

it('should have getDOMNode return null when multiple layers of composite ' +
'components render to the same null placeholder', () => {
'components render to the same null placeholder',
() => {
spyOn(console, 'log');

var GrandChild = React.createClass({
Expand Down