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.css
とディレクトリbootstrap-wysihtml5.js
がapp/assets/stylesheets
あります。app/assets/javascripts
これはしばらく前にうまくいきました。私はwysihtml5-textfieldを持っていました。
しかし、昨日 wsihtml5 パネルが消えてしまい、フィールド本体が通常のテキスト フィールドのようになりました。「ニュース」モデルには触れておらず、ログにエラーはありません。
ここで何が起こっているのですか?