1
0
mirror of https://github.com/go-gitea/gitea synced 2025-01-12 22:17:42 +01:00

11 lines
360 B
JavaScript
Raw Normal View History

export function initSshKeyFormParser() {
// Parse SSH Key
document.getElementById('ssh-key-content')?.addEventListener('input', function () {
const arrays = this.value.split(' ');
const title = document.getElementById('ssh-key-title');
if (!title.value && arrays.length === 3 && arrays[2] !== '') {
title.value = arrays[2];
}
});
}