Commit 66a5d0fd authored by Alfredo Sumaran's avatar Alfredo Sumaran

Rename method

parent 64c2d9bd
...@@ -23,7 +23,7 @@ module DiffHelper ...@@ -23,7 +23,7 @@ module DiffHelper
end end
def diff_options def diff_options
options = { ignore_whitespace_change: hide_whitespaces? } options = { ignore_whitespace_change: hide_whitespace? }
if diff_hard_limit_enabled? if diff_hard_limit_enabled?
options.merge!(Commit.max_diff_options) options.merge!(Commit.max_diff_options)
end end
...@@ -129,16 +129,16 @@ module DiffHelper ...@@ -129,16 +129,16 @@ module DiffHelper
end end
end end
def hide_whitespaces? def hide_whitespace?
params[:w] == '1' params[:w] == '1'
end end
def params_with_whitespace def params_with_whitespace
hide_whitespaces? ? request.query_parameters.except(:w) : request.query_parameters.merge(w: 1) hide_whitespace? ? request.query_parameters.except(:w) : request.query_parameters.merge(w: 1)
end end
def toggle_whitespace_link(url) def toggle_whitespace_link(url)
link_to "#{hide_whitespaces? ? 'Show' : 'Hide'} whitespace changes", url, class: "btn btn-default" link_to "#{hide_whitespace? ? 'Show' : 'Hide'} whitespace changes", url, class: "btn btn-default"
end end
def commit_diff_whitespace_link(project, commit) def commit_diff_whitespace_link(project, commit)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment