removed extra comma

This commit is contained in:
bill bittner 2017-07-28 16:59:57 -07:00
parent 8f269cf193
commit 3bf0bfdecd

View file

@ -61,7 +61,7 @@ function showError(elementId, errorMsg) {
errorDisplay.innerText = errorMsg;
}
function clearError(elementId,) {
function clearError(elementId) {
var errorDisplay = document.getElementById(elementId);
errorDisplay.hidden = true;
errorDisplay.innerText = '';