[SSE mobile] For Bug 53990
This commit is contained in:
parent
f7aeef5f23
commit
01ba97c2f1
|
@ -19,7 +19,6 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu
|
|||
|
||||
const onError = (id, level, errData) => {
|
||||
const api = Common.EditorApi.get();
|
||||
api.asc_enableKeyEvents(false);
|
||||
|
||||
if (id === Asc.c_oAscError.ID.LoadingScriptError) {
|
||||
f7.notification.create({
|
||||
|
@ -357,10 +356,7 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu
|
|||
buttons: [
|
||||
{
|
||||
text: 'OK',
|
||||
onClick: () => {
|
||||
api.asc_enableKeyEvents(true);
|
||||
config.callback;
|
||||
}
|
||||
onClick: () => config.callback
|
||||
}
|
||||
]
|
||||
}).open();
|
||||
|
|
|
@ -109,7 +109,7 @@ const CellEditorView = props => {
|
|||
</div>
|
||||
<div className="ce-group group--content" style={contentStyle}>
|
||||
<div id="idx-list-target" className="target-function-list"></div>
|
||||
<textarea id="idx-cell-content" spellCheck="false" onFocus={(e) => {wsLock && e.target.blur()}}/>
|
||||
<textarea id="idx-cell-content" spellCheck="false"/>
|
||||
</div>
|
||||
<div className="ce-group">
|
||||
<Link icon="caret" onClick={expandClick} />
|
||||
|
|
Loading…
Reference in a new issue