forked from forgejo/forgejo
fix repo-new ui, fix top-nav search-bar ui
This commit is contained in:
parent
337eef2ee5
commit
8549b47e04
3 changed files with 12 additions and 1 deletions
|
@ -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 ($) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue