我正在使用 best_in_place gem 就地编辑客户的信息。
我的问题是,如何集成 WYSIWYG 编辑器来将此内容编辑为 HTML?我目前正在使用这个编辑器:https ://github.com/Nerian/bootstrap-wysihtml5-rails/
我不擅长 javascript 和 cofeescript,所以我可能做错了什么。
我的代码在视图中:
<%= best_in_place @client, :info, :type => :textarea, :nil => "Click here to add content!", :html_attrs => { class: "wysihtml5" }, :sanitize => false %>
还有clients.js.cofee
$(document).ready ->
# Activating Best In Place
jQuery(".best_in_place").best_in_place()
# Loading editor
$(".wysihtml5").each (i, elem) ->
$(elem).wysihtml5()
有谁知道该怎么做?
谢谢