script.js

Summary

Maintainability
A
2 hrs
Test Coverage

Showing 2 of 2 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

$('#usernameInput').keypress(function(e){
if(e.keyCode == 13) {
$('#submitUsername').click();
return false; //prevents a linebreak being added by enter key
}
Severity: Major
Found in script.js and 1 other location - About 1 hr to fix
script.js on lines 112..117

Similar blocks of code found in 2 locations. Consider refactoring.
Open

$('#newClapInput').keypress(function(e){
if(e.keyCode == 13) {
$('#submitButton').click();
return false; //prevents a linebreak being added by enter key
}
Severity: Major
Found in script.js and 1 other location - About 1 hr to fix
script.js on lines 119..124
Category
Status