mirror of
https://github.com/go-gitea/gitea.git
synced 2024-05-11 05:55:29 +00:00
fix repo-new ui, fix top-nav search-bar ui
This commit is contained in:
@ -559,7 +559,15 @@ function initRelease() {
|
||||
$('.release-write a[data-toggle]').on("click", function () {
|
||||
$('.release-preview-content').html("loading...");
|
||||
});
|
||||
}())
|
||||
}());
|
||||
|
||||
// release new target selection
|
||||
(function () {
|
||||
$('#release-new-target-branch-list').on('click', 'a', function () {
|
||||
$('#tag-target').val($(this).text());
|
||||
$('#release-new-target-name').text(" " + $(this).text());
|
||||
});
|
||||
}());
|
||||
}
|
||||
|
||||
(function ($) {
|
||||
|
Reference in New Issue
Block a user