Reputation: 4563
I have a facebook app iframe which contains flash (wmode: window). The FB.init provides a callback function to customize the hiding behaviour.
Without using this callback, the hiding and showing works perfectly. But when using it, my flash is not returning to visible. My logged params are ok. Apparently, Facebook adds "visibility:hidden;" to my Application selector and does not remove it properly.
Any ideas?
Upvotes: 1
Views: 360
Reputation: 11
Do something like this in flash div
<style>
#MyFlashObjectID {
visibility: visible !important;
}
</style>
Upvotes: 1