From: Vincent Vanwaelscappel Date: Tue, 17 Dec 2019 18:26:29 +0000 (+0100) Subject: fix #3278 @1 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=38a267ab3364f42a15fa34c2c86864829049f972;p=fluidbook-html5.git fix #3278 @1 --- diff --git a/js/libs/fluidbook/fluidbook.tabs.js b/js/libs/fluidbook/fluidbook.tabs.js index 7e877704..3bb24417 100644 --- a/js/libs/fluidbook/fluidbook.tabs.js +++ b/js/libs/fluidbook/fluidbook.tabs.js @@ -380,6 +380,13 @@ FluidbookTabs.prototype = { if (this.fluidbook.support.IE > 0) { svgcss.width = w; } + if (this.fluidbook.support.iOS) { + if (this.svg.get(0).style.height === '100%') { + svgcss.height = '99.9999%'; + } else { + svgcss.height = '100%'; + } + } css.width = 'auto'; if (this.align === 'right') { css.left = data.fluidbookrect.left + data.fluidbookrect.width + (this.margin * scale);