Этот коммит содержится в:
Mattia Roccoberton
2017-10-15 22:54:41 +02:00
Коммит e11c759919
20 изменённых файлов: 22193 добавлений и 0 удалений

17
lib/formtastic/inputs/quill_editor_input.rb Обычный файл
Просмотреть файл

@@ -0,0 +1,17 @@
module Formtastic
module Inputs
class QuillEditorInput < Formtastic::Inputs::TextInput
def to_html
input_wrapping do
label_html <<
template.content_tag( :div, input_html_options.merge( class: 'quill-editor' ) ) do
builder.hidden_field( input_name ) <<
template.content_tag( :div, class: 'quill-editor-content' ) do
object.send( method ).try :html_safe
end
end
end
end
end
end
end