Sha256: 9dbc59dd2055a37ce25689a4fb5bcaccaaf2f9bfc7e686b198a514d7a5e78aaa

Contents?: true

Size: 642 Bytes

Versions: 48

Compression:

Stored size: 642 Bytes

Contents

# -*- encoding : utf-8 -*-
InlineForms::SPECIAL_COLUMN_TYPES[:text_area_without_ckeditor]=:text

def text_area_without_ckeditor_show(object, attribute)
  link_to_inline_edit object, attribute, (object[attribute].nil? || object[attribute].empty?) ? "<i class='fi-plus'></i>".html_safe : object[attribute]
end

def text_area_without_ckeditor_edit(object, attribute)
  text_area_tag attribute, object[attribute], :class => 'attribute_text_area'
end

def text_area_without_ckeditor_update(object, attribute)
  object[attribute.to_sym] = params[attribute.to_sym]
end

def text_area_without_ckeditor_info(object, attribute)
  object[attribute]
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
inline_forms-6.2.14 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.2.12 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.2.11 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.2.10 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.2.9 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.2.7 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.2.6 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.2.5 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.2.4 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.2.3 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.2.2 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.2.1 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.1.1 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.1.0 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.0.8 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.0.7 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.0.6 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.0.5 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.0.4 app/helpers/form_elements/text_area_without_ckeditor.rb
inline_forms-6.0.3 app/helpers/form_elements/text_area_without_ckeditor.rb