aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/features/sshkey-helper.js
blob: 099b54d3a648c77e90e465897fd6fec8ee2c59c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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]);
    }
  });
}