CC-4898: Pressing "Enter" from anywhere on the edit metadata popup should automatically Save and close the popup

-fixed
This commit is contained in:
denise 2013-02-14 14:52:48 -05:00
parent cd5f1149af
commit 1a36953d82
1 changed files with 6 additions and 0 deletions

View File

@ -1380,5 +1380,11 @@ $(document).ready(function() {
$('#editmdcancel').live("click", function() {
$("#edit-md-dialog").dialog().remove();
});
$('#edit-md-dialog').live("keyup", function(event) {
if (event.keyCode === 13) {
$('#editmdsave').click();
}
});
});