diff --git a/workflow/engine/templates/home/index.html b/workflow/engine/templates/home/index.html index 000059de2..1fbb0d9b7 100644 --- a/workflow/engine/templates/home/index.html +++ b/workflow/engine/templates/home/index.html @@ -31,7 +31,12 @@ 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)