Opening the PDF viewer in a popup window


This page should only be used if the assisted migration script asks you to pass the manual migration code.20250613.INTRANETCARDS.FlipbookPopup

From version 1.32.0 of the Intranet Cards charter, you can choose to open the PDF viewer (flipbook) from the kiosk in a popup instead of opening a new tab.

For this purpose, a view parameter has been added to the search-kiosquexml view 

For this parameter to work, you need to call the kiosk-popup and kiosk-popup-js templates.

<xsl:if test="$openFlipbookInPopup = 'true'">
            <xsl:call-template name="kiosk-popup"/>
            <xsl:call-template name="kiosk-popup-js"/>
</xsl:if>

In the plugin 's XSL , these templates are called from the "common-service-body-nonempty-content-content" template. You must therefore include them in your override.

Back to top