mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 06:24:11 +01:00 
			
		
		
		
	auto-redirect when finish filter branch
This commit is contained in:
		
							parent
							
								
									dea3a8c6a4
								
							
						
					
					
						commit
						43a87b0caf
					
				@ -97,10 +97,9 @@ function initRepository() {
 | 
			
		||||
    // Pull request
 | 
			
		||||
    if ($('.repository.compare.pull').length > 0) {
 | 
			
		||||
        $('.choose.branch .dropdown').dropdown({
 | 
			
		||||
            action: 'hide',
 | 
			
		||||
            fullTextSearch: true,
 | 
			
		||||
            onNoResults: function () {
 | 
			
		||||
                $('.choose.branch .dropdown .active').addClass('selected');
 | 
			
		||||
            onChange: function (text, value, $choice) {
 | 
			
		||||
                window.location.href = $choice.data('url');
 | 
			
		||||
            }
 | 
			
		||||
        });
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
@ -21,7 +21,7 @@
 | 
			
		||||
	          </div>
 | 
			
		||||
	          <div class="items">
 | 
			
		||||
		        	{{range .Branches}}
 | 
			
		||||
		          <a class="{{if eq $.BaseBranch .}}active selected{{end}} item" href="{{$.RepoLink}}/compare/{{.}}...{{$.SignedUser.Name}}:{{$.HeadBranch}}">{{.}}</a>
 | 
			
		||||
		          <div class="{{if eq $.BaseBranch .}}active selected{{end}} item" data-url="{{$.RepoLink}}/compare/{{.}}...{{$.SignedUser.Name}}:{{$.HeadBranch}}">{{.}}</div>
 | 
			
		||||
		        	{{end}}
 | 
			
		||||
	          </div>
 | 
			
		||||
					</div>
 | 
			
		||||
@ -39,7 +39,7 @@
 | 
			
		||||
	          </div>
 | 
			
		||||
	          <div class="items">
 | 
			
		||||
		        	{{range .HeadBranches}}
 | 
			
		||||
		          <a class="{{if eq $.HeadBranch .}}active selected{{end}} item" href="{{$.RepoLink}}/compare/{{$.BaseBranch}}...{{$.SignedUser.Name}}:{{.}}">{{.}}</a>
 | 
			
		||||
		          <div class="{{if eq $.HeadBranch .}}active selected{{end}} item" data-url="{{$.RepoLink}}/compare/{{$.BaseBranch}}...{{$.SignedUser.Name}}:{{.}}">{{.}}</div>
 | 
			
		||||
		        	{{end}}
 | 
			
		||||
	        	</div>
 | 
			
		||||
					</div>
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user