gitlab-org--gitlab-foss/app/views/projects/diffs/_text_file.html.haml

17 lines
711 B
Plaintext
Raw Normal View History

- too_big = diff_file.diff_lines.count > Commit::DIFF_SAFE_LINES
2012-04-05 22:00:15 +00:00
- if too_big
.suppressed-container
%a.show-suppressed-diff.js-show-suppressed-diff Changes suppressed. Click to show.
2012-04-05 22:00:15 +00:00
%table.text-file.code.js-syntax-highlight{ data: diff_view_data, class: too_big ? 'hide' : '' }
2014-08-02 15:12:01 +00:00
- last_line = 0
2016-08-18 23:27:22 +00:00
- discussions = @grouped_diff_discussions unless @diff_notes_disabled
= render partial: "projects/diffs/line",
collection: diff_file.highlighted_diff_lines,
as: :line,
2016-08-19 00:54:50 +00:00
locals: { diff_file: diff_file, discussions: discussions }
2016-08-18 23:27:22 +00:00
- last_line = diff_file.highlighted_diff_lines.last.new_pos
2016-07-21 18:44:12 +00:00
- if !diff_file.new_file && last_line > 0
= diff_match_line last_line, last_line, bottom: true