Guest User

Untitled

a guest
Jun 18th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. {= render_generic_tab_bar(tab_bar_class, options)
  2. <div class="{{ tab_bar_class }} clearfix">
  3. {% _.each(options.tabs, function(tab) {
  4. if (tab.visible === undefined || tab.visible ) { %}
  5. <span class="tab{% if (tab.name == options.selected_tab) emit(' selected'); %}"><a href="{{ tab.url }}">{{ tab.text }}</a></span>
  6. {% } %}
  7. {% }); %}
  8. </div>
  9. =}
Add Comment
Please, Sign In to add comment