2020-11-24 15:15:51 +05:30
|
|
|
#blob-content.file-content.code.js-syntax-highlight
|
2015-04-26 12:48:37 +05:30
|
|
|
.line-numbers
|
|
|
|
- if blob.data.present?
|
2020-10-24 23:57:45 +05:30
|
|
|
- link_icon = sprite_icon('link', size: 12)
|
2016-08-24 12:49:21 +05:30
|
|
|
- link = blob_link if defined?(blob_link)
|
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.
|
2017-08-17 22:00:37 +05:30
|
|
|
%a.diff-line-num{ href: "#{link}#L#{i}", id: "L#{i}", 'data-line-number' => i }
|
2016-06-02 11:05:42 +05:30
|
|
|
= link_icon
|
2015-04-26 12:48:37 +05:30
|
|
|
= i
|
2020-04-22 19:07:51 +05:30
|
|
|
.blob-content{ data: { blob_id: blob.id, path: blob.path } }
|
2018-12-13 13:39:08 +05:30
|
|
|
%pre.code.highlight
|
|
|
|
%code
|
|
|
|
= blob.present.highlight
|