You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 23, 2019. It is now read-only.
There is an issue with IE when the width or height of an iframe is 100% the only fix is to add a style to the
created in the IFrameExternalCalls.as this occurs in google maps when you load the iframe as a .content. if you place a px hight or width the style doesn't effect the display, the display issue occurs only when it is at a specified percentage.
You have to modify the loadDIV function with the following to get it to work properly:
public static var INSERT_FUNCTION_LOADDIV_CONTENT:String =
"document.insertScript = function ()" +
"{ " +
"if (document." + FUNCTION_LOADDIV_CONTENT + "==null)" +
"{" +
FUNCTION_LOADDIV_CONTENT + " = function (frameID, iframeID, content)" +
"{" +
"document.getElementById(frameID).innerHTML = "
"+content+"
";" +
"}" +
"}" +
"}";
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
There is an issue with IE when the width or height of an iframe is 100% the only fix is to add a style to the
You have to modify the loadDIV function with the following to get it to work properly:
public static var INSERT_FUNCTION_LOADDIV_CONTENT:String =
"document.insertScript = function ()" +
"{ " +
"if (document." + FUNCTION_LOADDIV_CONTENT + "==null)" +
"{" +
FUNCTION_LOADDIV_CONTENT + " = function (frameID, iframeID, content)" +
"{" +
"document.getElementById(frameID).innerHTML = "
"}" +
"}" +
"}";
The text was updated successfully, but these errors were encountered: