mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Backport #14969 Fix #14968 Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
		@@ -5,7 +5,7 @@ const headingSelector = '.markdown h1, .markdown h2, .markdown h3, .markdown h4,
 | 
				
			|||||||
function scrollToAnchor() {
 | 
					function scrollToAnchor() {
 | 
				
			||||||
  if (document.querySelector(':target')) return;
 | 
					  if (document.querySelector(':target')) return;
 | 
				
			||||||
  if (!window.location.hash || window.location.hash.length <= 1) return;
 | 
					  if (!window.location.hash || window.location.hash.length <= 1) return;
 | 
				
			||||||
  const id = window.location.hash.substring(1);
 | 
					  const id = decodeURIComponent(window.location.hash.substring(1));
 | 
				
			||||||
  const el = document.getElementById(`user-content-${id}`);
 | 
					  const el = document.getElementById(`user-content-${id}`);
 | 
				
			||||||
  if (el) {
 | 
					  if (el) {
 | 
				
			||||||
    el.scrollIntoView();
 | 
					    el.scrollIntoView();
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user