mirror fix on release JS
This commit is contained in:
parent
bc8721fb6c
commit
cf7ebfbdc8
|
@ -435,8 +435,13 @@ function initHookTypeChange() {
|
|||
|
||||
function initRepoRelease() {
|
||||
$('#release-new-target-branch-list li').click(function() {
|
||||
$('#repo-branch-current').text($(this).text());
|
||||
$('#tag-target').val($(this).text());
|
||||
if (!$(this).hasClass('checked')) {
|
||||
$('#repo-branch-current').text($(this).text());
|
||||
$('#tag-target').val($(this).text());
|
||||
|
||||
$(this).parent().find('.checked').removeClass('checked');
|
||||
$(this).addClass('checked');
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue