gantt: remove redundant empty lines from lib/redmine/helpers/gantt.rb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10341 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
f9d0b4776f
commit
e637c15660
|
@ -94,7 +94,6 @@ module Redmine
|
||||||
# Returns the number of rows that will be rendered on the Gantt chart
|
# Returns the number of rows that will be rendered on the Gantt chart
|
||||||
def number_of_rows
|
def number_of_rows
|
||||||
return @number_of_rows if @number_of_rows
|
return @number_of_rows if @number_of_rows
|
||||||
|
|
||||||
rows = projects.inject(0) {|total, p| total += number_of_rows_on_project(p)}
|
rows = projects.inject(0) {|total, p| total += number_of_rows_on_project(p)}
|
||||||
rows > @max_rows ? @max_rows : rows
|
rows > @max_rows ? @max_rows : rows
|
||||||
end
|
end
|
||||||
|
@ -313,7 +312,6 @@ module Redmine
|
||||||
@issue_ancestors.pop
|
@issue_ancestors.pop
|
||||||
options[:indent] -= options[:indent_increment]
|
options[:indent] -= options[:indent_increment]
|
||||||
end
|
end
|
||||||
|
|
||||||
output = case options[:format]
|
output = case options[:format]
|
||||||
when :html
|
when :html
|
||||||
css_classes = ''
|
css_classes = ''
|
||||||
|
@ -366,7 +364,6 @@ module Redmine
|
||||||
date_to = (@date_from >> @months)-1
|
date_to = (@date_from >> @months)-1
|
||||||
show_weeks = @zoom > 1
|
show_weeks = @zoom > 1
|
||||||
show_days = @zoom > 2
|
show_days = @zoom > 2
|
||||||
|
|
||||||
subject_width = 400
|
subject_width = 400
|
||||||
header_height = 18
|
header_height = 18
|
||||||
# width of one day in pixels
|
# width of one day in pixels
|
||||||
|
|
Loading…
Reference in New Issue