Class: ProjectMenuItem
- Defined in:
- app/models/project_menu_item.rb
Instance Attribute Summary
Attributes inherited from MenuItem
Instance Method Summary collapse
- #display ⇒ Object
-
#initialize(project, href) ⇒ ProjectMenuItem
constructor
A new instance of ProjectMenuItem.
Methods inherited from MenuItem
Constructor Details
#initialize(project, href) ⇒ ProjectMenuItem
Returns a new instance of ProjectMenuItem.
3 4 5 6 |
# File 'app/models/project_menu_item.rb', line 3 def initialize(project, href) @project = project super(project.name, href) end |
Instance Method Details
#display ⇒ Object
8 9 10 |
# File 'app/models/project_menu_item.rb', line 8 def display "<b class=\"bubble #{h @project.color}\"></b> #{h @project.name}".html_safe end |