diff options
-rw-r--r-- | public/js/index.js | 9 | ||||
-rw-r--r-- | templates/user/settings/sshkeys.tmpl | 4 |
2 files changed, 11 insertions, 2 deletions
diff --git a/public/js/index.js b/public/js/index.js index 487f812d1d..e700da29f8 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -1486,4 +1486,13 @@ $(function () { $('.list-search-style').html('.search-list li:not([data-title*="' + value + '"]) {display: none;}'); } }); + + // Parse SSH Key + $("#ssh-key-content").on('change paste keyup',function(){ + var value = $(this).val(); + var arrays = value.split(" "); + if (arrays.length === 3 && arrays[2] !== "") { + $("#ssh-key-title").val(arrays[2]); + } + }); }); diff --git a/templates/user/settings/sshkeys.tmpl b/templates/user/settings/sshkeys.tmpl index 33426fdc56..72344df3ed 100644 --- a/templates/user/settings/sshkeys.tmpl +++ b/templates/user/settings/sshkeys.tmpl @@ -53,11 +53,11 @@ {{.CsrfTokenHtml}} <div class="field {{if .Err_Title}}error{{end}}"> <label for="title">{{.i18n.Tr "settings.key_name"}}</label> - <input id="title" name="title" value="{{.title}}" autofocus required> + <input id="ssh-key-title" name="title" value="{{.title}}" autofocus required> </div> <div class="field {{if .Err_Content}}error{{end}}"> <label for="content">{{.i18n.Tr "settings.key_content"}}</label> - <textarea id="content" name="content" required>{{.content}}</textarea> + <textarea id="ssh-key-content" name="content" required>{{.content}}</textarea> </div> <button class="ui green button"> {{.i18n.Tr "settings.add_key"}} |