From 0054924cdbcdb3e3631bd7036244aebba4234c33 Mon Sep 17 00:00:00 2001 From: Reed Garmsen Date: Tue, 3 Nov 2015 09:39:07 -0800 Subject: Moved code theme picker into custom theme subarea --- .../components/user_settings/user_settings_appearance.jsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'web/react/components/user_settings/user_settings_appearance.jsx') diff --git a/web/react/components/user_settings/user_settings_appearance.jsx b/web/react/components/user_settings/user_settings_appearance.jsx index 425645c1f..550c180c0 100644 --- a/web/react/components/user_settings/user_settings_appearance.jsx +++ b/web/react/components/user_settings/user_settings_appearance.jsx @@ -203,12 +203,7 @@ export default class UserSettingsAppearance extends React.Component { {custom}
- {'Code Theme'} - -
+ {serverError} ); + /* {'Code Theme'} + +
*/ + return (
-- cgit v1.2.3-1-g7c22 From 4897997025d07998e77cee4dd1c4252fff763db4 Mon Sep 17 00:00:00 2001 From: Reed Garmsen Date: Wed, 4 Nov 2015 13:49:39 -0800 Subject: Removed old code theme selector and fixed some issues --- .../user_settings/user_settings_appearance.jsx | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'web/react/components/user_settings/user_settings_appearance.jsx') diff --git a/web/react/components/user_settings/user_settings_appearance.jsx b/web/react/components/user_settings/user_settings_appearance.jsx index 550c180c0..d73b5f476 100644 --- a/web/react/components/user_settings/user_settings_appearance.jsx +++ b/web/react/components/user_settings/user_settings_appearance.jsx @@ -7,7 +7,6 @@ var Utils = require('../../utils/utils.jsx'); const CustomThemeChooser = require('./custom_theme_chooser.jsx'); const PremadeThemeChooser = require('./premade_theme_chooser.jsx'); -const CodeThemeChooser = require('./code_theme_chooser.jsx'); const AppDispatcher = require('../../dispatcher/app_dispatcher.jsx'); const Constants = require('../../utils/constants.jsx'); const ActionTypes = Constants.ActionTypes; @@ -19,7 +18,6 @@ export default class UserSettingsAppearance extends React.Component { this.onChange = this.onChange.bind(this); this.submitTheme = this.submitTheme.bind(this); this.updateTheme = this.updateTheme.bind(this); - this.updateCodeTheme = this.updateCodeTheme.bind(this); this.deactivate = this.deactivate.bind(this); this.resetFields = this.resetFields.bind(this); this.handleImportModal = this.handleImportModal.bind(this); @@ -100,10 +98,6 @@ export default class UserSettingsAppearance extends React.Component { ); } updateTheme(theme) { - if (!theme.codeTheme) { - theme.codeTheme = this.state.theme.codeTheme; - } - let themeChanged = this.state.theme.length === theme.length; if (!themeChanged) { for (const field in theme) { @@ -121,11 +115,6 @@ export default class UserSettingsAppearance extends React.Component { this.setState({theme}); Utils.applyTheme(theme); } - updateCodeTheme(codeTheme) { - var theme = this.state.theme; - theme.codeTheme = codeTheme; - this.updateTheme(theme); - } updateType(type) { this.setState({type}); } @@ -203,7 +192,6 @@ export default class UserSettingsAppearance extends React.Component {
{custom}
- {serverError}
); - /* {'Code Theme'} - -
*/ - return (
-- cgit v1.2.3-1-g7c22