Created
January 9, 2014 17:31
-
-
Save tylerlee/8338300 to your computer and use it in GitHub Desktop.
Vertical Tabs Markup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <% links = [{:title => 'Home', :path => styleguide_path}, | |
| {:title => 'The Grid', :path => styleguide_path(:grid)}, | |
| ...] %> | |
| <%= | |
| vertical_tabs do |ui| | |
| links.each do |tab| | |
| ui.tab tab[:title], | |
| tab.delete(:path) | |
| end | |
| end | |
| %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment