我在我的 Spree 商店设置了https://github.com/blueimp/Bootstrap-Image-Gallery 。
在开发机器上一切正常。
当按下图像预览时,我在生产服务器上收到错误。
链接到我收到错误的页面:http: //vk-magazin.com/products/krossovki-adidas-1
问问题
2588 次
1 回答
1
我将 Twitter Bootstrap 主题与 bootstrap-sass gem 一起使用。
并且在包含 bootstrap-sass 时犯了错误。你只需要创建文件
/app/assets/stylesheets/store/ 中的 tb.css.css
其中应包含:
@import "bootstrap";
要找出您设置了正确的 TB,请检查源代码中的 tb.css 文件。
如果您看到带有类似注释的行
/* /../../..ruby-gems bla bla bla */
.clearfix {
你设置了 TB css 正确
的 Javascript 包括
在 app/assets/javascripts/store/all.js
. . .
//= require bootstrap
. . .
在这个带有 TB 的 js 之后应该可以正常工作。
于 2012-07-21T16:51:10.223 回答