mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
531 B
17 lines
531 B
import $ from 'jquery'; |
|
import {initCompLabelEdit} from './comp/LabelEdit.js'; |
|
import {toggleElem} from '../utils/dom.js'; |
|
|
|
export function initCommonOrganization() { |
|
if ($('.organization').length === 0) { |
|
return; |
|
} |
|
|
|
$('.organization.settings.options #org_name').on('input', function () { |
|
const nameChanged = $(this).val().toLowerCase() !== $(this).attr('data-org-name').toLowerCase(); |
|
toggleElem('#org-name-change-prompt', nameChanged); |
|
}); |
|
|
|
// Labels |
|
initCompLabelEdit('.organization.settings.labels'); |
|
}
|
|
|