rte: remove logging and fix new history

This commit is contained in:
Aviral Dasgupta 2017-03-10 21:10:27 +05:30
parent 6004f6d610
commit 8dc7f8efe2
No known key found for this signature in database
GPG key ID: 5FD1E9F4FFD3DA80
3 changed files with 8 additions and 6 deletions

View file

@ -197,7 +197,6 @@ export default class Autocomplete extends React.Component {
setState(state, func) {
super.setState(state, func);
console.log(state);
}
render() {

View file

@ -320,7 +320,6 @@ export default class MessageComposerInput extends React.Component {
const selection = RichText.selectionStateToTextOffsets(
this.state.editorState.getSelection(),
this.state.editorState.getCurrentContent().getBlocksAsArray());
console.log(textContent);
this.props.onContentChanged(textContent, selection);
}
});
@ -541,7 +540,6 @@ export default class MessageComposerInput extends React.Component {
// tab and shift-tab are mapped to down and up arrow respectively
onTab = async (e) => {
console.log('onTab');
e.preventDefault(); // we *never* want tab's default to happen, but we do want up/down sometimes
if (this.autocomplete.state.completionList.length === 0) {
await this.autocomplete.forceComplete();
@ -567,7 +565,6 @@ export default class MessageComposerInput extends React.Component {
if (displayedCompletion == null) {
if (this.state.originalEditorState) {
console.log('setting editorState to originalEditorState');
let editorState = this.state.originalEditorState;
// This is a workaround from https://github.com/facebook/draft-js/issues/458
// Due to the way we swap editorStates, Draft does not rerender at times