2011-10-30 23:02:41 +00:00
|
|
|
module Locomotive
|
|
|
|
class EditableLongText < EditableShortText
|
|
|
|
|
2012-03-21 23:50:34 +00:00
|
|
|
## methods ##
|
|
|
|
|
2011-11-21 01:27:05 +00:00
|
|
|
def as_json(options = {})
|
|
|
|
Locomotive::EditableLongTextPresenter.new(self).as_json
|
|
|
|
end
|
|
|
|
|
2011-10-30 23:02:41 +00:00
|
|
|
end
|
|
|
|
end
|