diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-11-18 16:06:14 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-11-18 16:06:14 +0000 |
commit | c7505aa76b3afc12adab4fc38987138349b7ab83 (patch) | |
tree | b2992ed0b3218174bb31f650535fa80ef8b23b89 /app | |
parent | 40f5865c522408e607b454cdbe96e870e15dcc0a (diff) | |
download | redmine-c7505aa76b3afc12adab4fc38987138349b7ab83.tar.gz redmine-c7505aa76b3afc12adab4fc38987138349b7ab83.zip |
Use the regular "icon icon-*" on roadmap (#24313).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@15976 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/versions/index.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/versions/index.html.erb b/app/views/versions/index.html.erb index ab6182033..2914a6dbc 100644 --- a/app/views/versions/index.html.erb +++ b/app/views/versions/index.html.erb @@ -17,7 +17,7 @@ </div> <% end %> <header> - <h3 class="version"><%= link_to_version version, :name => version_anchor(version) %></h3> + <h3 class="icon icon-package version"><%= link_to_version version, :name => version_anchor(version) %></h3> </header> <%= render :partial => 'versions/overview', :locals => {:version => version} %> <%= render(:partial => "wiki/content", @@ -85,13 +85,13 @@ </ul> <% if @completed_versions.present? %> <p> - <%= link_to_function l(:label_completed_versions), + <%= link_to_function l(:label_completed_versions), '$("#toggle-completed-versions").toggleClass("collapsed"); $("#completed-versions").toggle()', :id => 'toggle-completed-versions', :class => 'collapsible collapsed' %> <ul id = "completed-versions" style = "display:none;"> <% @completed_versions.each do |version| %> <li><%= link_to_version version %></li> - <% end %> + <% end %> </ul> </p> <% end %> |