Merged in marcoAntonioNina/processmaker/BUG-14022 (pull request #691)

BUG-14022 Cut frame with user experience mobile, switchable SOLVED
This commit is contained in:
Julio Cesar Laura Avendaño
2014-08-20 16:05:49 -04:00
2 changed files with 14 additions and 2 deletions

View File

@@ -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)

View File

@@ -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)