e44a7e37b6
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
17 lines
417 B
JavaScript
17 lines
417 B
JavaScript
// *** Fricking Eolas. This is here to get around the Eolas issue. Sigh. ***************
|
|
dojox.av.flash.place = function(node, kwArgs){
|
|
node=dojo.byId(node);
|
|
var o = dojox.av.flash.__ie_markup__(kwArgs);
|
|
if(o){
|
|
node.innerHTML = o.markup;
|
|
return window[o.id];
|
|
}
|
|
return null;
|
|
}
|
|
if(dojo._initFired){
|
|
dojox.av.flash.onInitialize();
|
|
} else {
|
|
dojo.addOnLoad(function(){
|
|
dojox.av.flash.onInitialize();
|
|
});
|
|
}
|