Banner sections can be saved (one banner can appear in several sections) If the hex color is changed in the textfield, the color of the color picker changes.
5 lines
103 B
Ruby
5 lines
103 B
Ruby
class WebSection < ActiveRecord::Base
|
|
has_many :sections
|
|
has_many :banners, through: :sections
|
|
end
|