remove disabling of the RFC button after having posted an RFC

This commit is contained in:
Ralf Teusner
2018-07-18 09:33:29 +02:00
parent f3ce783429
commit 1627d10600

View File

@ -89,7 +89,8 @@ CodeOceanEditorRequestForComments = {
this.createSubmission($('#requestComments'), null, createRequestForComments.bind(this));
$('#comment-modal').modal('hide');
var button = $('#requestComments');
button.prop('disabled', true);
// we disabled the button to prevent that the user spams RFCs, but decided against this now.
//var button = $('#requestComments');
//button.prop('disabled', true);
},
};