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.
2 parents 6556adf + 8da867d commit f410733Copy full SHA for f410733
src/RichTextEditor.js
@@ -431,6 +431,10 @@ export default class RichTextEditor extends Component {
431
}
432
433
focusTitle() {
434
+ if (this.props.hiddenTitle) {
435
+ return;
436
+ }
437
+
438
this._sendAction(actions.focusTitle);
439
440
src/assets/editor.html
@@ -921,8 +921,6 @@
921
whenPastingInsertAsPlainText('zss_editor_title');
922
whenPastingInsertAsPlainText('zss_editor_content');
923
924
- zss_editor.focusTitle();
925
-
926
setTimeout(function() {
927
ReactNativeWebView.postMessage(JSON.stringify({type: 'ZSS_INITIALIZED'}))
928
}, 20);
0 commit comments