Unbind click handler on next-courseware-button to prevent repeated presses from advancing more than one challenge
This commit is contained in:
@@ -148,6 +148,7 @@ function showCompletion() {
|
||||
$('body').keydown(function(e) {
|
||||
if (e.ctrlKey && e.keyCode == 13) {
|
||||
$('#next-courseware-button').click();
|
||||
$('#next-courseware-button').unbind('click');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user