Merge pull request #4412 from hawsome/patch-2

Switch to using comma-dangle: always-multiline
This commit is contained in:
Paul O’Shannessy 2015-07-17 13:34:33 -07:00
commit d435556920
1 changed files with 8 additions and 8 deletions

View File

@ -11,11 +11,11 @@ var IS_MOBILE = (
var CodeMirrorEditor = React.createClass({ var CodeMirrorEditor = React.createClass({
propTypes: { propTypes: {
lineNumbers: React.PropTypes.bool, lineNumbers: React.PropTypes.bool,
onChange: React.PropTypes.func onChange: React.PropTypes.func,
}, },
getDefaultProps: function() { getDefaultProps: function() {
return { return {
lineNumbers: false lineNumbers: false,
}; };
}, },
componentDidMount: function() { componentDidMount: function() {
@ -28,7 +28,7 @@ var CodeMirrorEditor = React.createClass({
smartIndent: false, // javascript mode does bad things with jsx indents smartIndent: false, // javascript mode does bad things with jsx indents
matchBrackets: true, matchBrackets: true,
theme: 'solarized-light', theme: 'solarized-light',
readOnly: this.props.readOnly readOnly: this.props.readOnly,
}); });
this.editor.on('change', this.handleChange); this.editor.on('change', this.handleChange);
}, },
@ -60,7 +60,7 @@ var CodeMirrorEditor = React.createClass({
{editor} {editor}
</div> </div>
); );
} },
}); });
var selfCleaningTimeout = { var selfCleaningTimeout = {
@ -71,7 +71,7 @@ var selfCleaningTimeout = {
setTimeout: function() { setTimeout: function() {
clearTimeout(this.timeoutID); clearTimeout(this.timeoutID);
this.timeoutID = setTimeout.apply(null, arguments); this.timeoutID = setTimeout.apply(null, arguments);
} },
}; };
var ReactPlayground = React.createClass({ var ReactPlayground = React.createClass({
@ -85,7 +85,7 @@ var ReactPlayground = React.createClass({
renderCode: React.PropTypes.bool, renderCode: React.PropTypes.bool,
showCompiledJSTab: React.PropTypes.bool, showCompiledJSTab: React.PropTypes.bool,
showLineNumbers: React.PropTypes.bool, showLineNumbers: React.PropTypes.bool,
editorTabTitle: React.PropTypes.string editorTabTitle: React.PropTypes.string,
}, },
getDefaultProps: function() { getDefaultProps: function() {
@ -95,7 +95,7 @@ var ReactPlayground = React.createClass({
}, },
editorTabTitle: 'Live JSX Editor', editorTabTitle: 'Live JSX Editor',
showCompiledJSTab: true, showCompiledJSTab: true,
showLineNumbers: false showLineNumbers: false,
}; };
}, },
@ -218,5 +218,5 @@ var ReactPlayground = React.createClass({
); );
}, 500); }, 500);
} }
} },
}); });