Sha256: e946d3a55ee63c66ae72fd1a209fd9f847f39512cf786cb53dc1d13b87d9bee9
Contents?: true
Size: 439 Bytes
Versions: 7
Compression:
Stored size: 439 Bytes
Contents
module Fooltip class Popup < ::ActiveRecord::Base translates :title, :content, fallbacks_for_empty_translations: true accepts_nested_attributes_for :translations attr_accessible :content, :title, :identifier, :min_width, :min_height, :max_width, :max_height, :translations_attributes has_many :links, dependent: :destroy has_many :containers, through: :links validates :identifier, presence: true end end
Version data entries
7 entries across 7 versions & 1 rubygems