We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c353e7 commit 9396c0fCopy full SHA for 9396c0f
src/RichTextEditor.js
@@ -225,6 +225,7 @@ export default class RichTextEditor extends Component {
225
style={{flex: 1}}
226
{...this.props}
227
hideKeyboardAccessoryView={true}
228
+ keyboardDisplayRequiresUserAction={false}
229
ref={(r) => {this.webviewBridge = r}}
230
onBridgeMessage={(message) => this.onBridgeMessage(message)}
231
injectedJavaScript={injectScript}
src/editor.html
@@ -883,6 +883,8 @@
883
whenPastingInsertAsPlainText('zss_editor_title');
884
whenPastingInsertAsPlainText('zss_editor_content');
885
886
+ zss_editor.focusTitle();
887
+
888
setTimeout(function() {
889
WebViewBridge.send(JSON.stringify({type: 'ZSS_INITIALIZED'}))
890
}, 20);
0 commit comments