7

I am trying to get a login modal showing when I click on login.

I am using bootstrap3, angularJS1.2 and angular-ui0.6

When I click on login, the transparent background of the modal shows but the popup never appears. When I check in the console, I can actually see the code populated but never manages to display it.

I am guessing that it is a problem with 1.2 animation and 0.6 not being up to date but I am not sure (I actually reverted back to < 1.2 and I run into the same problem.

Any idea what may be happening?

4

3 回答 3

5

尚不支持 Bootstrap 3。但是,这对我有用:ngEkathuwa

于 2013-11-08T09:03:57.733 回答
1

AngularUI 0.6 不适用于 BS3。我一直在等待这个特殊的修复来继续我的一个项目。模态视图被特别破坏。我们必须等到 0.7 出来。

于 2013-11-08T05:04:03.437 回答
1

您需要从不同的分支构建自己的 ui-bootstrap JS 文件,然后使用它(angular-ui 团队正在开发这个单独的分支以使其与 Bootstrap 3 兼容)。

要构建,只需按照以下步骤操作(改编自https://github.com/angular-ui/bootstrap/issues/331#issuecomment-25032867

  1. git 克隆https://github.com/angular-ui/bootstrap.git
  2. 光盘引导
  3. git checkout origin/bootstrap3_bis2
  4. npm 安装
  5. 咕噜声构建

您将在 ./dist/ 文件夹中找到新的 ui-bootstrap JS 文件。

于 2013-11-09T20:08:31.033 回答