summaryrefslogtreecommitdiffstats
path: root/webapp/components/help/help_controller.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/help/help_controller.jsx')
-rw-r--r--webapp/components/help/help_controller.jsx29
1 files changed, 0 insertions, 29 deletions
diff --git a/webapp/components/help/help_controller.jsx b/webapp/components/help/help_controller.jsx
deleted file mode 100644
index b58a93320..000000000
--- a/webapp/components/help/help_controller.jsx
+++ /dev/null
@@ -1,29 +0,0 @@
-import PropTypes from 'prop-types';
-
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import React from 'react';
-import ReactDOM from 'react-dom';
-
-export default class HelpController extends React.Component {
- static get propTypes() {
- return {
- children: PropTypes.node.isRequired
- };
- }
-
- componentWillUpdate() {
- ReactDOM.findDOMNode(this).scrollIntoView();
- }
-
- render() {
- return (
- <div className='help'>
- <div className='container col-sm-10 col-sm-offset-1'>
- {this.props.children}
- </div>
- </div>
- );
- }
-}