mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	* Make localstorage read ssh or https correctly * Update index.js If not login there is only a "https" button, This commit fix the "https" button hasn't blue border. * Keep user selected whether or not to log in * Update index.js Co-authored-by: L0veSunshine <xuan199651@gmail.com> Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
		| @@ -1109,8 +1109,10 @@ async function initRepository() { | |||||||
|     $('.clone-url').text($(this).data('link')); |     $('.clone-url').text($(this).data('link')); | ||||||
|     $('#repo-clone-url').val($(this).data('link')); |     $('#repo-clone-url').val($(this).data('link')); | ||||||
|     $(this).addClass('blue'); |     $(this).addClass('blue'); | ||||||
|  |     if ($('#repo-clone-ssh').length > 0) { | ||||||
|       $('#repo-clone-ssh').removeClass('blue'); |       $('#repo-clone-ssh').removeClass('blue'); | ||||||
|       localStorage.setItem('repo-clone-protocol', 'https'); |       localStorage.setItem('repo-clone-protocol', 'https'); | ||||||
|  |     } | ||||||
|   }); |   }); | ||||||
|   $('#repo-clone-url').on('click', function () { |   $('#repo-clone-url').on('click', function () { | ||||||
|     $(this).select(); |     $(this).select(); | ||||||
| @@ -2436,7 +2438,9 @@ $(document).ready(async () => { | |||||||
|   if ($('#repo-clone-url').length > 0) { |   if ($('#repo-clone-url').length > 0) { | ||||||
|     switch (localStorage.getItem('repo-clone-protocol')) { |     switch (localStorage.getItem('repo-clone-protocol')) { | ||||||
|       case 'ssh': |       case 'ssh': | ||||||
|         if ($('#repo-clone-ssh').length === 0) { |         if ($('#repo-clone-ssh').length > 0) { | ||||||
|  |           $('#repo-clone-ssh').trigger('click'); | ||||||
|  |         } else { | ||||||
|           $('#repo-clone-https').trigger('click'); |           $('#repo-clone-https').trigger('click'); | ||||||
|         } |         } | ||||||
|         break; |         break; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user