Sha256: f8d7479b0bee0b90b165ac15a3175e0ff846b0943bbd44313dafa53f0140c6af
Contents?: true
Size: 528 Bytes
Versions: 18
Compression:
Stored size: 528 Bytes
Contents
module Locomotive module Wagon module Liquid module Tags module Editable class ShortText < Base def render(context) Locomotive::Wagon::Logger.warn " [#{self.current_block_name(context)}/#{@slug}] The editable_{short|long}_text tags are deprecated. Use editable_text instead.".colorize(:orange) super(context) end end ::Liquid::Template.register_tag('editable_short_text', ShortText) end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems