rails_admin中的Wysihtml5消失了

时间:2014-01-07 14:20:42

标签: ruby-on-rails rails-admin bootstrap-wysihtml5

我已将gem 'bootstrap-wysihtml5-rails'添加到我的Gemfile中。所以我在rails_admin中使用这个gem。

我的项目中有一个名为“新闻”的模型。它看起来像这样:

class News < ActiveRecord::Base
    has_attached_file :photo
    attr_accessible :photo, :header,:caption,:body,:photo_file_name,:photo_content_type,:photo_file_size
    rails_admin do
      field :photo,:paperclip
      field :header
      field :caption
      field :body, :wysihtml5
  end
end

我在bootstrap-wysihtml5.cssbootstrap-wysihtml5.js目录中有app/assets/stylesheetsapp/assets/javascripts个文件。

这段时间以前工作得很好。我有wysihtml5-textfield。

但昨天wysihtml5面板刚刚消失,现在我的场体看起来像普通的文本区域。我没有触及“新闻”模型和日志没有给出任何错误。

这里发生了什么?

0 个答案:

没有答案