Sha256: 049a70019ba9f5034e4dda13206c3f3088f59589ce2429ee92815fb1ca0adf3f

Contents?: true

Size: 1.05 KB

Versions: 34

Compression:

Stored size: 1.05 KB

Contents

<div class="tabs">
  <ul>
  <% tabs.each do |tab| -%>
    <li><%= link_to l(tab[:label]), { :tab => tab[:name] },
                                    :id => "tab-#{tab[:name]}",
                                    :class => (tab[:name] != selected_tab ? nil : 'selected'),
                                    :onclick => "showTab('#{tab[:name]}', this.href); this.blur(); return false;" %></li>
  <% end -%>
  </ul>
  <div class="tabs-buttons" style="display:none;">
    <button class="tab-left" type="button" onclick="moveTabLeft(this);"></button>
    <button class="tab-right" type="button" onclick="moveTabRight(this);"></button>
  </div>
</div>

<script>
  $(document).ready(displayTabsButtons);
  $(window).resize(displayTabsButtons);
</script>

<% tabs.each do |tab| -%>
  <%= content_tag('div', render(:partial => tab[:partial], :locals => {:tab => tab} ),
                       :id => "tab-content-#{tab[:name]}",
                       :style => (tab[:name] != selected_tab ? 'display:none' : nil),
                       :class => 'tab-content') %>
<% end -%>

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
redmine_extensions-0.0.39 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.0.38 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.0.37 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.1.11 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.1.10 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.0.36 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.0.34 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.1.09 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.1.07 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.1.06 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.1.05 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.1.04 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.1.03 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.0.33 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.1.02 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.1.01 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.0.29 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.0.28 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.0.27 spec/redmine/app/views/common/_tabs.html.erb
redmine_extensions-0.0.24 spec/redmine/app/views/common/_tabs.html.erb