Created
August 9, 2011 01:39
-
-
Save kevn/1133239 to your computer and use it in GitHub Desktop.
TinyMCE iframe creation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create iframe | |
// TODO: ACC add the appropriate description on this. | |
n = DOM.add(o.iframeContainer, 'iframe', { | |
id : t.id + "_ifr", | |
src : u || 'javascript:""', // Workaround for HTTPS warning in IE6/7 | |
frameBorder : '0', | |
allowTransparency : "true", | |
title : s.aria_label, | |
style : { | |
width : '100%', | |
height : h | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment