Guest User

Untitled

a guest
May 27th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. ## application layout
  2. <div id="menuholder">
  3. <%= build_menu_bar %>
  4. </div>
  5.  
  6. ## application_helper.rb
  7.  
  8. def build_menu_bar
  9. dropdowns = Dropdown.all
  10.  
  11. dropdowns.map do |d|
  12. content_tag :a, d.name
  13. end
  14.  
  15. end
Add Comment
Please, Sign In to add comment