mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 04:54:09 +00:00
2c336646f1
- Switched to plain JavaScript - Tested the SSH key title functionality and it works as before # Demo using JavaScript without jQuery ![action](https://github.com/go-gitea/gitea/assets/20454870/4785c13d-8d30-448e-b74a-263935e2769f) --------- Signed-off-by: Yarden Shoham <git@yardenshoham.com> Co-authored-by: silverwind <me@silverwind.io> (cherry picked from commit 236e12184404998c8edf7efa6de7fccf9d0ee814)
11 lines
360 B
JavaScript
11 lines
360 B
JavaScript
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];
|
|
}
|
|
});
|
|
}
|