Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
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.
10 lines
323 B
10 lines
323 B
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]); |
|
} |
|
}); |
|
}
|
|
|