BUG-14022 Cut frame with user experience mobile, switchable SOLVED

- style not allowed.
- A validation was added for version ie 10-11 in file index.html
This commit is contained in:
Marco Antonio Nina
2014-08-19 11:22:46 -04:00
parent d7665a72dc
commit f8e931b6bd

View File

@@ -29,7 +29,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)