Merge branch 'fix-add-key-submit' into 'master'

Enable "Add key" button when user fills in a proper key

Closes #4295

See merge request !2208
This commit is contained in:
Douwe Maan
2015-12-30 16:50:02 -05:00
committed by Robert Speicher
parent 8d8f52ac17
commit 01824a0fac
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -2,6 +2,7 @@ Please view this file on the master branch, on stable branches it's out of date.
v 8.3.3 (unreleased)
- Fix project transfer e-mail sending incorrect paths in e-mail notification (Stan Hu)
- Enable "Add key" button when user fills in a proper key
v 8.3.2
- Disable --follow in `git log` to avoid loading duplicate commit data in infinite scroll (Stan Hu)
+1 -1
View File
@@ -12,6 +12,6 @@
comment = val.match(/^\S+ \S+ (.+)\n?$/);
if( comment && comment.length > 1 && title.val() == '' ){
$('#key_title').val( comment[1] );
$('#key_title').val( comment[1] ).change();
}
});