Преглед на файлове

autoFocus for richtexteditor

pu преди 4 години
родител
ревизия
12f8bdc0db
променени са 1 файла, в които са добавени 3 реда и са изтрити 0 реда
  1. 3
    0
      src/RichTextEditor.js

+ 3
- 0
src/RichTextEditor.js Целия файл

@@ -56,6 +56,9 @@ export default class RichTextEditor extends Component {
56 56
         Keyboard.addListener('keyboardDidShow', this._onKeyboardWillShow),
57 57
         Keyboard.addListener('keyboardDidHide', this._onKeyboardWillHide)
58 58
       ];
59
+      if (this.props.autoFocus) {
60
+        this.webview.requestFocus();
61
+      }
59 62
     }
60 63
   }
61 64