CC-4898: Pressing "Enter" from anywhere on the edit metadata popup should automatically Save and close the popup
-fixed
This commit is contained in:
parent
cd5f1149af
commit
1a36953d82
|
@ -1380,5 +1380,11 @@ $(document).ready(function() {
|
||||||
$('#editmdcancel').live("click", function() {
|
$('#editmdcancel').live("click", function() {
|
||||||
$("#edit-md-dialog").dialog().remove();
|
$("#edit-md-dialog").dialog().remove();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('#edit-md-dialog').live("keyup", function(event) {
|
||||||
|
if (event.keyCode === 13) {
|
||||||
|
$('#editmdsave').click();
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue