From: Stephen Cameron Date: Tue, 19 Oct 2021 13:49:57 +0000 (+0200) Subject: Fix broken landing page links after Fluidbook input handler changes. Done #4803 @0.5 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=cbcd90c164aa7fcccf012a3ae2a12c4e5765d08e;p=fluidbook-html5.git Fix broken landing page links after Fluidbook input handler changes. Done #4803 @0.5 --- diff --git a/js/libs/fluidbook/fluidbook.landingpage.js b/js/libs/fluidbook/fluidbook.landingpage.js index bcdaef42..745fadb2 100644 --- a/js/libs/fluidbook/fluidbook.landingpage.js +++ b/js/libs/fluidbook/fluidbook.landingpage.js @@ -35,7 +35,7 @@ FluidbookLandingPage.prototype = { // Click handler for all links inside iframe // We must wait for the iframe to load before we can add a listener to the document $('#landingPageIframe').on('load', function () { - $(this).contents().on(this.fluidbook.input.clickEvent, 'a', $this.handleLink); + $(this).contents().on($this.fluidbook.input.clickEvent, 'a', $this.handleLink); }); } },