From e11b4078bc66371208d4d296d604540bdc185b0c Mon Sep 17 00:00:00 2001 From: Daniel Lo Nigro Date: Sun, 31 Aug 2014 21:48:10 -0700 Subject: [PATCH] Small tweaks to HTML to JSX page: - Remove "Compiled JS" tab since it doesn't make sense - Relabelled editor to "Live HTML Editor" rather than "Live JSX Editor" --- docs/_js/html-jsx.js | 2 ++ docs/_js/live_editor.js | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/_js/html-jsx.js b/docs/_js/html-jsx.js index ea9b9d698c..ae1d6ec33a 100644 --- a/docs/_js/html-jsx.js +++ b/docs/_js/html-jsx.js @@ -79,6 +79,8 @@ var HELLO_COMPONENT = "\ codeText={HELLO_COMPONENT} renderCode={true} transformer={this.convertToJSX} + showCompiledJSTab={false} + editorTabTitle="Live HTML Editor" /> ); diff --git a/docs/_js/live_editor.js b/docs/_js/live_editor.js index 477db9c856..4d6c66708d 100644 --- a/docs/_js/live_editor.js +++ b/docs/_js/live_editor.js @@ -79,6 +79,8 @@ var ReactPlayground = React.createClass({ codeText: React.PropTypes.string.isRequired, transformer: React.PropTypes.func, renderCode: React.PropTypes.bool, + showCompiledJSTab: React.PropTypes.bool, + editorTabTitle: React.PropTypes.string }, getDefaultProps: function() { @@ -86,6 +88,7 @@ var ReactPlayground = React.createClass({ transformer: function(code) { return JSXTransformer.transform(code).code; }, + editorTabTitle: 'Live JSX Editor', showCompiledJSTab: true }; }, @@ -150,7 +153,7 @@ var ReactPlayground = React.createClass({
- Live JSX Editor + {this.props.editorTabTitle}
return (