mirror of
				https://codeberg.org/ashley/poke
				synced 2025-07-17 16:52:11 +00:00 
			
		
		
		
	fix the contunation bug :p
This commit is contained in:
		
							parent
							
								
									98dd3d1135
								
							
						
					
					
						commit
						0b2917e40d
					
				| @ -1276,11 +1276,23 @@ width: fit-content; | ||||
|  	</div> | ||||
|     <% if (!isMobile) { %>   | ||||
| 
 | ||||
|   <script>    window.addEventListener('scroll', function() { | ||||
|          if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight) { | ||||
|             window.location.href = window.location.href + '&continuation=<%=tj.continuation%>'; | ||||
|   <script>  | ||||
|   window.addEventListener('scroll', function() { | ||||
|     if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight) { | ||||
|         var currentUrl = new URL(window.location.href); | ||||
|         var params = new URLSearchParams(currentUrl.search); | ||||
|         var continuationValue = '<%=tj.continuation%>'; | ||||
| 
 | ||||
|         if (params.has('continuation')) { | ||||
|             params.set('continuation', continuationValue); | ||||
|         } else { | ||||
|             params.append('continuation', continuationValue); | ||||
|         } | ||||
|     }); | ||||
| 
 | ||||
|         currentUrl.search = params.toString(); | ||||
|         window.location.href = currentUrl.toString(); | ||||
|     } | ||||
| }); | ||||
|     </script>                       <% } %> | ||||
| 
 | ||||
|                        <% } %> | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 ashley
						ashley