Fix Split-View line adjustment (#4622)
The $-function is unreachable in the previous implementation because jQuery is not loaded yet. I fix this by executing the function after the content is loaded, so jQuery is loaded at the time of execution and the call will not fail anymore. Signed-off-by: Felix Nehrke <felix@nehrke.info>
This commit is contained in:
		
							parent
							
								
									578cf52ce5
								
							
						
					
					
						commit
						0e04a2091a
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -200,7 +200,7 @@ | |||
| 
 | ||||
| 	{{if .IsSplitStyle}} | ||||
| 		<script> | ||||
| 			(function() { | ||||
| 			document.addEventListener('DOMContentLoaded', function() { | ||||
| 				$('tr.add-code').each(function() { | ||||
| 					var prev = $(this).prev(); | ||||
| 					if(prev.is('.del-code') && prev.children().eq(3).text().trim() === '') { | ||||
|  | @ -217,7 +217,7 @@ | |||
| 						$(this).remove(); | ||||
| 					} | ||||
| 				}); | ||||
| 			}()); | ||||
| 			}); | ||||
| 		</script> | ||||
| 	{{end}} | ||||
| {{end}} | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue