(cp 4b0a544) fixed #1794 keyup event is triggered only once for album creation

This commit is contained in:
Matthieu Leproux
2022-11-16 15:19:01 +01:00
parent f3779d9e1f
commit ba9ae5cbc0
+1
View File
@@ -441,6 +441,7 @@ function openAddAlbumPopIn(parentAlbumId) {
$(".AddAlbumLabelUsername .user-property-input").val('');
$(".AddAlbumLabelUsername .user-property-input").focus();
$("#AddAlbum").unbind('keyup');
$("#AddAlbum").on('keyup', function (e) {
// 13 is 'Enter'
if(e.keyCode === 13) {