Files
Atay-Makhzan/web_src/js/features/sshkey-helper.js
T

11 lines
360 B
JavaScript
Raw Normal View History

2021-10-17 01:28:04 +08:00
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];
2021-10-17 01:28:04 +08:00
}
});
}