The Document Server version is 8.3.3, and the mobile OS version is 18.0, which is a simulator.
We are using a custom configuration as shown below.
The issue occurs in the same way in both the mobile web and the mobile app.
var connectEditor = function () {
config = {
type: "mobile",
documentType: "slide",
document: {
title: "samplepptx.pptx",
fileType: "pptx",
permissions: {
chat: false,
changeHistory: false,
comment: false,
download: false,
edit: false,
copy: true,
print: false,
fillForms: false,
modifyFilter: false,
modifyContentControl: false,
rename: false,
review: false
}
},
editorConfig: {
callbackUrl: "",
coEditing: {
mode: "fast",
change: true
},
createUrl: "",
mode: "view",
region: "ko-KR",
lang: "ko",
user: {},
embedded: {
saveUrl: "",
embedUrl: "",
shareUrl: "",
toolbarDocked: ""
},
customization: {
about: false,
autosave: true,
commentAuthorOnly: false,
comments: false,
compactHeader: true,
compactToolbar: true,
compatibleFeatures: true,
customer: {
address: "",
info: "",
logo: "",
mail: "",
name: "",
www: ""
},
features: {
spellcheck: {
mode: false
}
},
feedback: false,
forcesave: true,
help: true,
goback: {
blank: false,
requestClose: false,
text: "",
url: ""
},
hideRightMenu: true,
layout: {
leftMenu: false,
rightMenu: false,
statusBar: true,
toolbar: false
},
loaderName: " "
}
}
};
config.width = "100%";
config.height = "100%";
config.events = {
'onAppReady': onAppReady,
'onDocumentReady': onDocumentReady,
'onInfo': onInfo,
'onDocumentStateChange': onDocumentStateChange,
'onRequestEditRights': onRequestEditRights,
'onError': onError,
'onWarning': onWarning,
'onOutdatedVersion': onOutdatedVersion
};
};