Hide fullscreen buttons when using the app integration

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2019-06-13 11:04:17 +02:00
Родитель a008e964c2
Коммит df15618446
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4C614C6ED2CDE6DF
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -644,6 +644,14 @@ var documentsMain = {
if (documentsMain.getFileList()) {
documentsMain.getFileModel();
}
// Hide buttons when using the mobile app integration
if (
window.RichDocumentsMobileInterface ||
(window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.RichDocumentsMobileInterface)
) {
documentsMain.WOPIPostMessage($('#loleafletframe')[0], 'Hide_Button', {id: 'fullscreen'});
documentsMain.WOPIPostMessage($('#loleafletframe')[0], 'Hide_Menu_Item', {id: 'fullscreen'});
}
} else if (msg.Values.Status === "Failed") {
// Loading failed but editor shows the error
documentsMain.isFrameReady = true;