filter/source/svg/presentation_engine.js | 5 +++++ 1 file changed, 5 insertions(+)
New commits: commit 4063dcdc7305177b167bd20b009b1dfede8b25ec Author: andreasma <[email protected]> AuthorDate: Fri Aug 26 18:28:35 2022 +0200 Commit: Miklos Vajna <[email protected]> CommitDate: Mon Sep 5 10:48:13 2022 +0200 Revert naming back to lool to fix break with LibreOffice Online Reverts the commit https://gerrit.libreoffice.org/c/core/+/132204 Signed-off-by: andreasma <[email protected]> Change-Id: Icaf672038777a23c9901e6c3f9f52930157050e1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138884 Tested-by: Jenkins Reviewed-by: Miklos Vajna <[email protected]> diff --git a/filter/source/svg/presentation_engine.js b/filter/source/svg/presentation_engine.js index 6473963f8e76..e08689d4901d 100644 --- a/filter/source/svg/presentation_engine.js +++ b/filter/source/svg/presentation_engine.js @@ -18895,6 +18895,11 @@ SlideShow.prototype.rewindAllEffects = function() SlideShow.prototype.exitSlideShowInApp = function() { + if (window.webkit !== undefined && + window.webkit.messageHandlers !== undefined && + window.webkit.messageHandlers.lok !== undefined) + window.webkit.messageHandlers.lok.postMessage('EXITSLIDESHOW', '*'); + // FIXME remove this in a follow-up commit if (window.webkit !== undefined && window.webkit.messageHandlers !== undefined && window.webkit.messageHandlers.cool !== undefined)
