0

我在我的 Rails 应用程序中使用 Thomas McDonals 的bootstrap-sass gem,每当我包含 bootstrap-transition.js 时,我的模态弹出窗口就不再出现。背景淡入,但实际的模态窗口不会出现。它甚至没有在源代码中显示,所以它不仅仅是被隐藏了。当我删除 bootstrap-transition.js 文件时,模式会正常工作。

现在,我包含了所有 bootstrap.js 文件,所以我正在做的事情没有什么不寻常的。

有人对如何恢复该模式有任何建议吗?我需要我正在使用的轮播的过渡。

编辑:为了清楚起见,我没有手动添加引导 js 文件,我只是按照 bootstrap-sass gem 的指示将它们包含在我的应用程序的 application.js 文件中。但是,开箱即用,模态窗口不起作用。

4

1 回答 1

0

为什么要添加 Js 文件?gem 应该通过资产管道将它们引入,您只需要将它们导入到您的 Js 的 application.js 文件中,并为引导 css 创建一个 css.scss 文件,如下所示:

boot.css.scss:

$navbarBackground: #000;
$navbarText: #fff;
$navbarLinkColor: #888;
$navbarBrandColor: #FFF;

@import "bootstrap";
@import "bootstrap-responsive";

应用程序.js:

// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// the compiled file.
//
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
// GO AFTER THE REQUIRES BELOW.
//
//= require jquery
//= require jquery_ujs
//= require bootstrap
//= require_tree .
于 2013-06-28T19:21:22.603 回答