mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 19:06:18 +01:00 
			
		
		
		
	Fix source code line highlighting (#18729)
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
		| @@ -16,11 +16,14 @@ function selectRange($list, $select, $from) { | ||||
|   const $issue = $('a.ref-in-new-issue'); | ||||
|   const $copyPermalink = $('a.copy-line-permalink'); | ||||
|  | ||||
|   if ($issue.length === 0 || $copyPermalink.length === 0) { | ||||
|   if ($copyPermalink.length === 0) { | ||||
|     return; | ||||
|   } | ||||
|  | ||||
|   const updateIssueHref = function(anchor) { | ||||
|   const updateIssueHref = function (anchor) { | ||||
|     if ($issue.length === 0) { | ||||
|       return; | ||||
|     } | ||||
|     let href = $issue.attr('href'); | ||||
|     href = `${href.replace(/%23L\d+$|%23L\d+-L\d+$/, '')}%23${anchor}`; | ||||
|     $issue.attr('href', href); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user