Sha256: d390b8907c95fac854cd27bd4baba00c89663a31f26afae35a95dc7425257f0d
Contents?: true
Size: 663 Bytes
Versions: 36
Compression:
Stored size: 663 Bytes
Contents
module Avo module Fields class ExternalImageField < BaseField attr_reader :width attr_reader :height attr_reader :radius def initialize(name, **args, &block) @defaults = { partial_name: "external-image-field", computable: true }.merge(@defaults || {}) super(name, **args, &block) @link_to_resource = args[:link_to_resource].present? ? args[:link_to_resource] : false @width = args[:width].present? ? args[:width] : 32 @height = args[:height].present? ? args[:height] : 32 @radius = args[:radius].present? ? args[:radius] : 0 end end end end
Version data entries
36 entries across 36 versions & 1 rubygems