add ctrl enter press to submit on modal

this adds the ability for a camper to press ctrl + enter to submit
a challenge while the challenge completion modal is open
This commit is contained in:
Berkeley Martinez
2015-09-09 12:52:31 -07:00
parent 3c18fabacf
commit c10f81408a
4 changed files with 11 additions and 3 deletions

View File

@@ -423,6 +423,14 @@ function showCompletion() {
var didCompleteWith = $('#completed-with').val() || null;
$('#complete-courseware-dialog').modal('show');
$('#complete-courseware-dialog .modal-header').click();
$('#complete-courseware-dialog').keyup(function(e) {
// ctrl + enter
if (e.ctrlKey && e.keyCode === 13) {
$('#submit-challenge').click();
}
});
$('#submit-challenge').click(function(e) {
e.preventDefault();