Flash Object Not Working in Angular UI Bootstrap modal in Firefox

357 views Asked by At

I'm trying to embed flash object inside angular ui modal and it's not working in Firefox but it is working in chrome. I've been working on these for the last 2 days and still can't find an answer. Using <param name="wmode" value="opaque" /> solves the problem but i found that there are some problems using opaque in terms of keyboard events and this is not an option for me.

Here is the example code.

1

There are 1 answers

5
adietan63 On

Found a solution!

I added this in css.

.modal.in .modal-dialog {
    transform: none;
}