Gus P
Gus P
Can you add a transition for when the user clicks the menu a 2nd time to close it??
So I have a Foreign link (URL) that is like this foo/bar yet when I ty to got it it breaks. What am I doing wrong here?
```ruby class Section < ApplicationRecord acts_as_list scope: %i[course_id, master_section] acts_as_list top_of_list: 1 scope :ordered, -> { order(:position) } belongs_to :course has_many :section_classes, class_name: 'Section', foreign_key: 'section_class_id' belongs_to :master_section, class_name: 'Section',...