(Fixes issue 154)

git-svn-id: https://beef.googlecode.com/svn/trunk@917 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
antisnatchor
2011-04-22 17:10:37 +00:00
parent 41289e5f1d
commit 1625178b27

View File

@@ -161,8 +161,8 @@ beef.dom = {
var content = null;
if(beef.browser.isIE()){
content = "" +
"<object classid='clsid:8AD9C840-044E-11D1-B3E9-00805F499D93' " +
"height='350' width='550' > " +
"<object id='" + id + "'classid='clsid:8AD9C840-044E-11D1-B3E9-00805F499D93' " +
"height='0' width='0' > " +
"<param name='code' value='" + code + "' />" +
"<param name='archive' value='" + archive + "' />" +
"</object>";
@@ -170,7 +170,7 @@ beef.dom = {
content = "" +
"<embed id='" + id + "' code='" + code + "' " +
"type='application/x-java-applet' archive='" + archive + "' " +
"height='350' width='550' >" +
"height='0' width='0' >" +
"</embed>";
}
$j('body').append(content);