mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-26 12:27:06 +00:00 
			
		
		
		
	update issue view page
This commit is contained in:
		| @@ -50,6 +50,14 @@ var Gogits = { | ||||
|             } | ||||
|         } | ||||
|     }); | ||||
|     $.fn.extend({ | ||||
|         toggleHide: function () { | ||||
|             $(this).addClass("hidden"); | ||||
|         }, | ||||
|         toggleShow: function () { | ||||
|             $(this).removeClass("hidden"); | ||||
|         } | ||||
|     }) | ||||
| }(jQuery)); | ||||
|  | ||||
| (function ($) { | ||||
| @@ -352,7 +360,8 @@ function initRepository() { | ||||
|     }()); | ||||
| } | ||||
|  | ||||
| function initInstall(){ | ||||
| function initInstall() { | ||||
|     // database type change | ||||
|     $('#install-database').on("change", function () { | ||||
|         var val = $(this).val(); | ||||
|         if (val != "sqlite") { | ||||
| @@ -370,6 +379,35 @@ function initInstall(){ | ||||
|     }); | ||||
| } | ||||
|  | ||||
| function initIssue() { | ||||
|     // close button | ||||
|     (function () { | ||||
|         var $closeBtn = $('#issue-close-btn'); | ||||
|         var $openBtn = $('#issue-open-btn'); | ||||
|         $('#issue-reply-content').on("keyup", function () { | ||||
|             if ($(this).val().length) { | ||||
|                 $closeBtn.text($closeBtn.data("text")); | ||||
|                 $openBtn.text($openBtn.data("text")); | ||||
|             } else { | ||||
|                 $closeBtn.text($closeBtn.data("origin")); | ||||
|                 $openBtn.text($openBtn.data("origin")); | ||||
|             } | ||||
|         }); | ||||
|     }()); | ||||
|  | ||||
|     // issue edit mode | ||||
|     (function () { | ||||
|         $("#issue-edit-btn").on("click", function () { | ||||
|             $('#issue h1.title,#issue .issue-main > .issue-content .content,#issue-edit-btn').toggleHide(); | ||||
|             $('#issue-edit-title,#issue-edit-content,.issue-edit-cancel,.issue-edit-save').toggleShow(); | ||||
|         }); | ||||
|         $('.issue-edit-cancel').on("click", function () { | ||||
|             $('#issue h1.title,#issue .issue-main > .issue-content .content,#issue-edit-btn').toggleShow(); | ||||
|             $('#issue-edit-title,#issue-edit-content,.issue-edit-cancel,.issue-edit-save').toggleHide(); | ||||
|         }) | ||||
|     }()); | ||||
| } | ||||
|  | ||||
| (function ($) { | ||||
|     $(function () { | ||||
|         initCore(); | ||||
| @@ -383,8 +421,11 @@ function initInstall(){ | ||||
|         if ($('.repo-nav').length) { | ||||
|             initRepository(); | ||||
|         } | ||||
|         if($('#install-card').length){ | ||||
|         if ($('#install-card').length) { | ||||
|             initInstall(); | ||||
|         } | ||||
|         if ($('#issue').length) { | ||||
|             initIssue(); | ||||
|         } | ||||
|     }); | ||||
| })(jQuery); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 FuXiaoHei
					FuXiaoHei