Problem with others embeds
Brought to you by:
stunnabbz
In videobox.js, insert this:
In open...
open: function(sLinkHref, sLinkTitle, sLinkRel) {
$$('select', 'object', 'embed').each(function(node){ node.style.visibility = 'hidden' });
...
In close
close: function(){
this.fx.overlay.start(0);
this.center.style.display = this.bottomContainer.style.display = 'none';
this.center.innerHTML = '';
---> $$('select', 'object', 'embed').each(function(node){ node.style.visibility = 'visible' });
return false;
}