mirror of
				https://github.com/NodeBB/NodeBB.git
				synced 2025-11-03 20:45:58 +01:00 
			
		
		
		
	fix: don't chagne scrollTop if at the top of page
This commit is contained in:
		@@ -210,7 +210,9 @@ define('forum/topic/posts', [
 | 
				
			|||||||
				html.insertBefore(before);
 | 
									html.insertBefore(before);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				// Now restore the relative position the user was on prior to new post insertion
 | 
									// Now restore the relative position the user was on prior to new post insertion
 | 
				
			||||||
 | 
									if (scrollTop > 0) {
 | 
				
			||||||
					$(window).scrollTop(scrollTop + ($(document).height() - height));
 | 
										$(window).scrollTop(scrollTop + ($(document).height() - height));
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
			} else {
 | 
								} else {
 | 
				
			||||||
				components.get('topic').append(html);
 | 
									components.get('topic').append(html);
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user