You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/externals/dojo/dojox/embed/IE/flash.js

20 lines
462 B
JavaScript

// *** Fricking Eolas. This is here to get around the Eolas issue. Sigh. ***************
dojox.embed.Flash.place = function(kwArgs, node){
var o = dojox.embed.Flash.__ie_markup__(kwArgs);
node=dojo.byId(node);
if(!node){
node=dojo.doc.createElement("div");
node.id=o.id+"-container";
dojo.body().appendChild(node);
}
if(o){
node.innerHTML = o.markup;
//return window[o.id];
return o.id;
}
return null;
}
dojox.embed.Flash.onInitialize();