From f89ad28a7881840d765af16815a868cfc9389054 Mon Sep 17 00:00:00 2001 From: Jesuye David Date: Mon, 25 Sep 2023 15:16:31 -0400 Subject: [PATCH] Fix iframe Answers Map/List toggle button on Mobile Error Iframe needs height in order for map and toggle button to be initialized and to fill js-answersMap --- static/js/iframe-common.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/static/js/iframe-common.js b/static/js/iframe-common.js index 2919ab1d1..5f7c46b60 100644 --- a/static/js/iframe-common.js +++ b/static/js/iframe-common.js @@ -70,6 +70,8 @@ export function generateIFrame(domain, answersExperienceFrame) { iframe.frameBorder = 0; // For dynamic iFrame sizing + iframe.style.height = '100%'; + iframe.style.minHeight = '100%'; iframe.style.width = '1px'; iframe.style.minWidth = '100%'; iframe.id = 'answers-frame';