diff --git a/workflow/engine/skinEngine/simplified/templates/index.html b/workflow/engine/skinEngine/simplified/templates/index.html index ae709b407..8d663b5fe 100644 --- a/workflow/engine/skinEngine/simplified/templates/index.html +++ b/workflow/engine/skinEngine/simplified/templates/index.html @@ -29,7 +29,13 @@ function resize() { var h = $(window).height() - 42; - $('iframe').height(h) + $('iframe').height(h); + //IE V10-V11 + if (navigator.appVersion.indexOf("MSIE 1") != -1) { + h = $('iframe').attr('style'); + $('iframe').attr('style', h+' padding-top : 40px;'); + } + } function redirect(url) diff --git a/workflow/engine/templates/home/index.html b/workflow/engine/templates/home/index.html index 000059de2..749c9c045 100644 --- a/workflow/engine/templates/home/index.html +++ b/workflow/engine/templates/home/index.html @@ -31,7 +31,13 @@ function resize() { var h = $(window).height() - 42; - $('iframe').height(h) + $('iframe').height(h); + //IE V10-V11 + if (navigator.appVersion.indexOf("MSIE 1") != -1) { + h = $('iframe').attr('style'); + $('iframe').attr('style', h+' padding-top : 40px;'); + } + } function redirect(url)