Sha256: 2df0e88124d44b3ea14dbdebfdbd285c771fbf72a681e28704d1878fc79faee9
Contents?: true
Size: 480 Bytes
Versions: 44
Compression:
Stored size: 480 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
44 entries across 44 versions & 1 rubygems