Fix overview spacing for disabled auto layout (#3291)

* Fix overlap in overview when config.disableLayout === true

* run gulp js
after commit 9193e5cd5d6d1aa234803b753c6d032b801a8221

---------

Co-authored-by: Hakim El Hattab <hakim.elhattab@gmail.com>
This commit is contained in:
Elliot" Constantin H
2023-02-22 04:01:21 +01:00
committed by GitHub
parent 7de6ccb65b
commit dcae8a4dc9
4 changed files with 13 additions and 4 deletions

View File

@ -1006,11 +1006,18 @@ export default function( revealElement, options ) {
* @param {number} [presentationHeight=dom.wrapper.offsetHeight]
*/
function getComputedSlideSize( presentationWidth, presentationHeight ) {
let width = config.width;
let height = config.height;
if (config.disableLayout) {
width = dom.slides.offsetWidth;
height = dom.slides.offsetHeight;
}
const size = {
// Slide size
width: config.width,
height: config.height,
width: width,
height: height,
// Presentation size
presentationWidth: presentationWidth || dom.wrapper.offsetWidth,