summaryrefslogtreecommitdiff
path: root/app/views/discussions/_parallel_diff_discussion.html.haml
blob: f1072ce0febaefdac9514ed35559a2bc27a21512 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- expanded = discussion_left.try(:expanded?) || discussion_right.try(:expanded?)
%tr.notes_holder{class: ('hide' unless expanded)}
  - if discussion_left
    %td.notes_line.old
    %td.notes_content.parallel.old
      .content{class: ('hide' unless discussion_left.expanded?)}
        = render "discussions/notes", discussion: discussion_left, line_type: 'old'
  - else
    %td.notes_line.old= ""
    %td.notes_content.parallel.old
      .content

  - if discussion_right
    %td.notes_line.new
    %td.notes_content.parallel.new
      .content{class: ('hide' unless discussion_right.expanded?)}
        = render "discussions/notes", discussion: discussion_right, line_type: 'new'
  - else
    %td.notes_line.new= ""
    %td.notes_content.parallel.new
      .content