Sha256: a8447c41d9189a78203d4b35200bdbe3c9c6708f0c3f16cac10ca846db16c090
Contents?: true
Size: 717 Bytes
Versions: 22
Compression:
Stored size: 717 Bytes
Contents
# frozen_string_literal: true module Alchemy module Ingredients # A video attachment # class Video < Alchemy::Ingredient store_accessor :data, :allow_fullscreen, :autoplay, :controls, :height, :loop, :muted, :preload, :width related_object_alias :attachment, class_name: "Alchemy::Attachment" delegate :name, to: :attachment, allow_nil: true # The first 30 characters of the attachments name # # Used by the Element#preview_text method. # # @param [Integer] max_length (30) # def preview_text(max_length = 30) name.to_s[0..max_length - 1] end end end end
Version data entries
22 entries across 22 versions & 1 rubygems