mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
19b017f398
- Don't rely on globals (window.$) for jQuery import - Remove eslint globals no longer in use
13 lines
348 B
JavaScript
13 lines
348 B
JavaScript
import $ from 'jquery';
|
|
|
|
export function initSshKeyFormParser() {
|
|
// Parse SSH Key
|
|
$('#ssh-key-content').on('change paste keyup', function () {
|
|
const arrays = $(this).val().split(' ');
|
|
const $title = $('#ssh-key-title');
|
|
if ($title.val() === '' && arrays.length === 3 && arrays[2] !== '') {
|
|
$title.val(arrays[2]);
|
|
}
|
|
});
|
|
}
|