##// END OF EJS Templates
Option for long text custom fields to be displayed under the description field (#21705)....
Option for long text custom fields to be displayed under the description field (#21705). Based on patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16251 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15377:efabbedebe80
r15869:b40d66f39fa8
Show More
_tabs.html.erb
21 lines | 985 B | text/plain | TextLexer
Jean-Philippe Lang
Refactoring of tabs rendering....
r2757 <div class="tabs">
<ul>
<% tabs.each do |tab| -%>
Jean-Philippe Lang
Enable filtering versions on Project -> Settings -> Versions (#22608)....
r15377 <li><%= link_to l(tab[:label]), (tab[:url] || { :tab => tab[:name] }),
Jean-Philippe Lang
Refactoring of tabs rendering....
r2757 :id => "tab-#{tab[:name]}",
:class => (tab[:name] != selected_tab ? nil : 'selected'),
Jean-Baptiste Barth
Update URL when changing tab (#13900)....
r11535 :onclick => "showTab('#{tab[:name]}', this.href); this.blur(); return false;" %></li>
Jean-Philippe Lang
Refactoring of tabs rendering....
r2757 <% end -%>
</ul>
Jean-Philippe Lang
Adds buttons to scroll the tabs when they overflow....
r3060 <div class="tabs-buttons" style="display:none;">
Jean-Philippe Lang
Restores commits reverted when rails-4.1 branch was merged (#18174)....
r13122 <button class="tab-left" type="button" onclick="moveTabLeft(this);"></button>
<button class="tab-right" type="button" onclick="moveTabRight(this);"></button>
Jean-Philippe Lang
Adds buttons to scroll the tabs when they overflow....
r3060 </div>
Jean-Philippe Lang
Refactoring of tabs rendering....
r2757 </div>
<% tabs.each do |tab| -%>
Toshi MARUYAMA
remove trailing white-spaces from app/views/common/_tabs.html.erb...
r7148 <%= content_tag('div', render(:partial => tab[:partial], :locals => {:tab => tab} ),
Jean-Philippe Lang
Refactoring of tabs rendering....
r2757 :id => "tab-content-#{tab[:name]}",
:style => (tab[:name] != selected_tab ? 'display:none' : nil),
:class => 'tab-content') %>
<% end -%>