Adding react scrollbar to the RHS thread (#2693)

* Adding scrollbar to the RHS thread

* Fixing the RHS thread scrolling issue
Этот коммит содержится в:
Asaad Mahmood
2016-04-13 17:33:42 +05:00
коммит произвёл Christopher Speller
родитель 76c4bebf9f
Коммит 51549cc0b2
6 изменённых файлов: 83 добавлений и 52 удалений

Просмотреть файл

@@ -203,7 +203,7 @@ class CreateComment extends React.Component {
draft.message = messageText;
PostStore.storeCommentDraft(this.props.rootId, draft);
$('.post-right__scroll').scrollTop($('.post-right__scroll')[0].scrollHeight);
$('.post-right__scroll').parent().scrollTop($('.post-right__scroll')[0].scrollHeight);
this.setState({messageText: messageText});
}
handleKeyDown(e) {