engine/lib/locomotive/liquid/tags/editable/long_text.rb

13 lines
220 B
Ruby
Raw Normal View History

module Locomotive
module Liquid
module Tags
module Editable
class LongText < ShortText
end
::Liquid::Template.register_tag('editable_long_text', LongText)
end
end
end
end