Sha256: fbdf8e596ff93d08731cbf6c67fff2db5dd631287f63fe4e3f5c855410d38e82
Contents?: true
Size: 475 Bytes
Versions: 35
Compression:
Stored size: 475 Bytes
Contents
# -*- encoding : utf-8 -*- InlineForms::SPECIAL_COLUMN_TYPES[:plain_text_area]=:text def plain_text_area_show(object, attribute) link_to_inline_edit object, attribute, object[attribute].empty? ? 'Click here to edit' : object[attribute] end def plain_text_area_edit(object, attribute) text_area_tag attribute, object[attribute], :class => 'attribute_text_area' end def plain_text_area_update(object, attribute) object[attribute.to_sym] = params[attribute.to_sym] end
Version data entries
35 entries across 35 versions & 1 rubygems