Sha256: 08c187c58107e71319813aa1b5b4541c5101063b4498d451c748974df6154597

Contents?: true

Size: 422 Bytes

Versions: 10

Compression:

Stored size: 422 Bytes

Contents

module Tenon
  module TenonContent
    module RowTypes
      class LeftTextRightImage < TenonContent::RowTypes::Base
        class << self
          def add_pieces_to(row)
            if row.pieces.empty?
              row.pieces.build(piece_type: 'Text', position: 0, size: 6)
              row.pieces.build(piece_type: 'Image', position: 1, size: 6)
            end
          end
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
tenon-2.1.0 app/models/tenon/tenon_content/row_types/left_text_right_image.rb
tenon-2.0.8 app/models/tenon/tenon_content/row_types/left_text_right_image.rb
tenon-2.0.7 app/models/tenon/tenon_content/row_types/left_text_right_image.rb
tenon-2.0.6 app/models/tenon/tenon_content/row_types/left_text_right_image.rb
tenon-2.0.5 app/models/tenon/tenon_content/row_types/left_text_right_image.rb
tenon-2.0.4 app/models/tenon/tenon_content/row_types/left_text_right_image.rb
tenon-2.0.3 app/models/tenon/tenon_content/row_types/left_text_right_image.rb
tenon-2.0.2 app/models/tenon/tenon_content/row_types/left_text_right_image.rb
tenon-2.0.1 app/models/tenon/tenon_content/row_types/left_text_right_image.rb
tenon-2.0.0 app/models/tenon/tenon_content/row_types/left_text_right_image.rb