Method: Tenon::PageDecorator#option_title
- Defined in:
- app/decorators/tenon/page_decorator.rb
#option_title ⇒ Object
3 4 5 6 7 8 9 |
# File 'app/decorators/tenon/page_decorator.rb', line 3 def option_title ot = '' ot << ' ' * ((@object.depth || 0) * 3) ot << '- ' if (@object.depth || 0) > 0 ot << @object.title ot.html_safe end |