2016-02-05 20:25:01 +05:30
|
|
|
.file-content.code.js-syntax-highlight
|
2015-04-26 12:48:37 +05:30
|
|
|
.line-numbers
|
|
|
|
- if blob.data.present?
|
2016-04-02 18:10:28 +05:30
|
|
|
- blob.data.each_line.each_with_index do |_, index|
|
2015-04-26 12:48:37 +05:30
|
|
|
- offset = defined?(first_line_number) ? first_line_number : 1
|
|
|
|
- i = index + offset
|
2015-09-11 14:41:01 +05:30
|
|
|
-# We're not using `link_to` because it is too slow once we get to thousands of lines.
|
2016-02-05 20:25:01 +05:30
|
|
|
%a.diff-line-num{href: "#L#{i}", id: "L#{i}", 'data-line-number' => i}
|
2015-04-26 12:48:37 +05:30
|
|
|
%i.fa.fa-link
|
|
|
|
= i
|
2015-12-23 02:04:40 +05:30
|
|
|
.blob-content{data: {blob_id: blob.id}}
|
2016-01-29 22:53:50 +05:30
|
|
|
= highlight(blob.name, blob.data)
|