I have no backdrop when using the modal directive from UI Bootstrap http://angular-ui.github.io/bootstrap/. The modal itself is working.
I have tried with both the ui-b
from Maxisam's link to the pull request: https://github.com/angular-ui/bootstrap/pull/3117
the easiest fix is simply to add the following CSS:
html { height: 100%; } body { min-height: 100%; } .modal-backdrop { bottom: 0; }
Hopefully it won't break your code :-)