PLT-2345 Switch "help" link below text input box to localizable version (#3794)

Этот коммит содержится в:
enahum
2016-08-18 17:36:43 -05:00
коммит произвёл Corey Hulen
родитель b95bd3d8cc
Коммит a820b1640b
12 изменённых файлов: 748 добавлений и 2 удалений

27
webapp/components/help/help_controller.jsx Обычный файл
Просмотреть файл

@@ -0,0 +1,27 @@
// Copyright (c) 2016 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: React.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>
);
}
}