Sha256: 44d520b69db11bafa2bd9fd64abcb689b1120e82ee3ba3c924ccb2c005bca175

Contents?: true

Size: 554 Bytes

Versions: 13

Compression:

Stored size: 554 Bytes

Contents

module Locomotive
  module Steam
    module Liquid
      module Tags

        # Add custom CSS and JS to let the logged in users
        # edit their page directly from the page it self.
        #
        # @deprecated
        #
        class InlineEditor < ::Liquid::Tag

          def render(context)
            Locomotive::Common::Logger.warn %(The inline_editor liquid tag is no more used.).yellow
            ''
          end

        end

        ::Liquid::Template.register_tag('inline_editor'.freeze, InlineEditor)

      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
locomotivecms_steam-1.8.0.alpha2 lib/locomotive/steam/liquid/tags/inline_editor.rb
locomotivecms_steam-1.8.0.alpha1 lib/locomotive/steam/liquid/tags/inline_editor.rb
locomotivecms_steam-1.7.1 lib/locomotive/steam/liquid/tags/inline_editor.rb
locomotivecms_steam-1.7.0 lib/locomotive/steam/liquid/tags/inline_editor.rb
locomotivecms_steam-1.6.1 lib/locomotive/steam/liquid/tags/inline_editor.rb
locomotivecms_steam-1.6.0 lib/locomotive/steam/liquid/tags/inline_editor.rb
locomotivecms_steam-1.6.0.rc1 lib/locomotive/steam/liquid/tags/inline_editor.rb
locomotivecms_steam-1.6.0.beta1 lib/locomotive/steam/liquid/tags/inline_editor.rb
locomotivecms_steam-1.5.3 lib/locomotive/steam/liquid/tags/inline_editor.rb
locomotivecms_steam-1.5.2 lib/locomotive/steam/liquid/tags/inline_editor.rb
locomotivecms_steam-1.5.1 lib/locomotive/steam/liquid/tags/inline_editor.rb
locomotivecms_steam-1.5.0 lib/locomotive/steam/liquid/tags/inline_editor.rb
locomotivecms_steam-1.5.0.rc1 lib/locomotive/steam/liquid/tags/inline_editor.rb