Bluring when updating score in admin panel

This commit is contained in:
gplane 2017-04-21 00:09:13 +08:00
parent 3e27625064
commit 6e5ed604cd

View File

@ -187,6 +187,7 @@ function deleteUserAccount(uid) {
$('body').on('keypress', '.score', function(event){
if (event.which == 13) {
changeUserScore($(this).parent().parent().attr('id'), $(this).val());
$(this).blur();
}
});