aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/features
diff options
context:
space:
mode:
authorYarden Shoham <git@yardenshoham.com>2024-02-16 15:34:29 +0200
committerGitHub <noreply@github.com>2024-02-16 13:34:29 +0000
commit236e12184404998c8edf7efa6de7fccf9d0ee814 (patch)
tree3ee80994fbf3952e4447893cce5a5e4c25bda154 /web_src/js/features
parentc40ee6fb7382bc2d1398dc685f98a0277d3bfb68 (diff)
downloadgitea-236e12184404998c8edf7efa6de7fccf9d0ee814.tar.gz
gitea-236e12184404998c8edf7efa6de7fccf9d0ee814.zip
Remove jQuery from SSH key form parser (#29193)
- 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>
Diffstat (limited to 'web_src/js/features')
-rw-r--r--web_src/js/features/sshkey-helper.js14
1 files changed, 6 insertions, 8 deletions
diff --git a/web_src/js/features/sshkey-helper.js b/web_src/js/features/sshkey-helper.js
index 099b54d3a6..3960eefe8e 100644
--- a/web_src/js/features/sshkey-helper.js
+++ b/web_src/js/features/sshkey-helper.js
@@ -1,12 +1,10 @@
-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]);
+ // 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];
}
});
}