Skip to content

Commit

Permalink
button name val quick-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
UltimateHikari committed Dec 1, 2018
1 parent be1859e commit 1674449
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client_Core.html
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,11 @@

function disableSubmitElem(string){
getSubmitButtonElem().setAttribute("disabled","disabled");
document.getElementById('current_team_name').value = string;
getSubmitButtonElem().value = string;
}

function enableSubmitElem(){
getSubmitButtonElem().removeAttribute("disabled");
document.getElementById('current_team_name').value = "Добавить";
getSubmitButtonElem().value = "Добавить";
}
</script>

0 comments on commit 1674449

Please sign in to comment.