Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_pdfviewer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/public.js')
-rw-r--r--src/public.js15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/public.js b/src/public.js
index c115a2f..a721205 100644
--- a/src/public.js
+++ b/src/public.js
@@ -45,7 +45,12 @@ window.addEventListener('DOMContentLoaded', function() {
const page = location.hash.split('page=')[1] || 0
const contentElmt = document.getElementById('files-public-content')
const sharingTokenElmt = document.getElementById('sharingToken')
- const footerElmt = document.querySelector('body > footer')
+ // By default the footer is a direct child of the body, but if the Talk
+ // sidebar is loaded it is moved into the app content. In all cases the
+ // footer is hidden to give the PDF viewer the full height.
+ const footerElmt = document.querySelector('body > footer') || document.querySelector('#app-content > footer')
+ const body = document.querySelector('body')
+ const mainContent = document.querySelector('#content')
const sharingToken = sharingTokenElmt.value
const downloadUrl = generateUrl('/s/{token}/download', { token: sharingToken })
@@ -67,6 +72,14 @@ window.addEventListener('DOMContentLoaded', function() {
contentElmt.appendChild(viewerNode)
viewerNode.src = viewerUrl
footerElmt.style.display = 'none'
+ // The main content height set in server assumes that there will be
+ // a footer. As the footer is hidden the main content needs to grow
+ // to take the available height. This needs to be done with flexbox
+ // so no explicit height needs to be given and it works both for the
+ // standard layout and the layout when the Talk sidebar is shown.
+ body.style.display = 'flex'
+ body.style.flexDirection = 'column'
+ mainContent.style.flexGrow = 1
} else {
logger.error('Unable to inject the PDF Viewer')
}