Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/notes/_diff_notes_with_reply_parallel.html.haml')
-rw-r--r--app/views/projects/notes/_diff_notes_with_reply_parallel.html.haml34
1 files changed, 0 insertions, 34 deletions
diff --git a/app/views/projects/notes/_diff_notes_with_reply_parallel.html.haml b/app/views/projects/notes/_diff_notes_with_reply_parallel.html.haml
deleted file mode 100644
index 789f3e19fd2..00000000000
--- a/app/views/projects/notes/_diff_notes_with_reply_parallel.html.haml
+++ /dev/null
@@ -1,34 +0,0 @@
-- note1 = notes1.present? ? notes1.first : nil
-- note2 = notes2.present? ? notes2.first : nil
-
-%tr.notes_holder
- - if note1
- %td.notes_line
- %span.btn.disabled
- %i.fa.fa-comment
- = notes1.count
- %td.notes_content.parallel
- %ul.notes{ rel: note1.discussion_id }
- = render notes1
-
- .discussion-reply-holder
- = link_to_reply_diff(note1)
- - else
- %td= ""
- %td= ""
-
- - if note2
- %td.notes_line
- %span.btn.disabled
- %i.fa.fa-comment
- = notes2.count
- %td.notes_content.parallel
- %ul.notes{ rel: note2.discussion_id }
- = render notes2
-
- .discussion-reply-holder
- = link_to_reply_diff(note2)
- - else
- %td= ""
- %td= ""
-