diff options
author | Etienne Massip <etienne.massip@gmail.com> | 2012-02-11 15:32:24 +0000 |
---|---|---|
committer | Etienne Massip <etienne.massip@gmail.com> | 2012-02-11 15:32:24 +0000 |
commit | 9678e335a46da29ff567a750edf3b6480ca6f844 (patch) | |
tree | eadd771dc86d2fe6a06b0f2ad78b467df8d2bae9 /app/views | |
parent | 2da8e97268531da03220cbbd611a106802bf3b8d (diff) | |
download | redmine-9678e335a46da29ff567a750edf3b6480ca6f844.tar.gz redmine-9678e335a46da29ff567a750edf3b6480ca6f844.zip |
Moved revision graph holder div out of the table structure.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8853 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/repositories/_revisions.html.erb | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/app/views/repositories/_revisions.html.erb b/app/views/repositories/_revisions.html.erb index 5b6ad6da0..e4a77388e 100644 --- a/app/views/repositories/_revisions.html.erb +++ b/app/views/repositories/_revisions.html.erb @@ -1,4 +1,19 @@ <% show_revision_graph = ( @repository.supports_revision_graph? && path.blank? ) %> +<%= if show_revision_graph && revisions && revisions.any? + indexed_commits, graph_space = index_commits(revisions, @repository.branches) do |scmid| + url_for( + :controller => 'repositories', + :action => 'revision', + :id => project, + :repository_id => @repository.identifier_param, + :rev => scmid) + end + render :partial => 'revision_graph', + :locals => { + :commits => indexed_commits, + :space => graph_space + } +end %> <% form_tag( {:controller => 'repositories', :action => 'diff', :id => project, :repository_id => @repository.identifier_param, :path => to_path_param(path)}, @@ -15,21 +30,6 @@ </tr></thead> <tbody> <% show_diff = revisions.size > 1 %> -<%= if show_revision_graph && revisions && revisions.any? - indexed_commits, graph_space = index_commits(revisions, @repository.branches) do |scmid| - url_for( - :controller => 'repositories', - :action => 'revision', - :id => project, - :repository_id => @repository.identifier_param, - :rev => scmid) - end - render :partial => 'revision_graph', - :locals => { - :commits => indexed_commits, - :space => graph_space - } -end %> <% line_num = 1 %> <% revisions.each do |changeset| %> <tr class="changeset <%= cycle 'odd', 'even' %>"> |