尝试使用bootstrap-wysihtml5-rails gem工作。
代码(HAML):
application.css
*= require_self
*= require bootstrap-wysihtml5
*= require_tree .
*/
的application.js
//= require jquery
//= require jquery_ujs
//= require bootstrap-wysihtml5
//= require bootstrap
//= require_tree .
pages.js(我编辑的表格是@page)
$(".wysihtml5").each (i, elem) ->
$(elem).wysihtml5()
_form.html.haml
= f.text_area :content, class: 'wysihtml5'
检查了DOM和脚本,但我看不到编辑器。
答案 0 :(得分:0)
尝试在你的textarea中放入一个id,我对咖啡或haml并不熟悉。
只需致电
$('#someIdorClass').wysihtml5();
检查您的网页源代码,看看是否有wysiwyg iframe代码