forked from forgejo/forgejo
This reverts commit 661d3d28e9
.
This commit is contained in:
parent
72b3681648
commit
4d0a72a271
10 changed files with 34 additions and 39 deletions
|
@ -65,18 +65,18 @@ export function initRepoClone() {
|
|||
}
|
||||
|
||||
export function initRepoCommonBranchOrTagDropdown(selector) {
|
||||
$.find(selector).each(function () {
|
||||
$(selector).each(function () {
|
||||
const $dropdown = $(this);
|
||||
$dropdown.find('.reference.column').on('click', function () {
|
||||
$dropdown.find('.scrolling.reference-list-menu').hide();
|
||||
$.find($(this).data('target')).show();
|
||||
$($(this).data('target')).show();
|
||||
return false;
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
export function initRepoCommonFilterSearchDropdown(selector) {
|
||||
const $dropdown = $.find(selector);
|
||||
const $dropdown = $(selector);
|
||||
$dropdown.dropdown({
|
||||
fullTextSearch: true,
|
||||
selectOnKeydown: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue