Skip to content

Commit

Permalink
Chore(chair#edit) Remove debug output from form JS
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisma committed Feb 19, 2018
1 parent 55e0418 commit e1f8886
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions app/views/chairs/_form.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,7 @@ function onAdminSelectChange() {

var selected_option = adminSelect.find("option");
var id = selected_option.attr("value");
console.log(id);
var name = selected_option.text();
console.log(name);

addAdmin(id, name);

Expand Down Expand Up @@ -126,9 +124,7 @@ function onRepresentativeSelectChange() {

var selected_option = representativeSelect.find("option");
var id = selected_option.attr("value");
console.log(id);
var name = selected_option.text();
console.log(name);

addRepresentative(id, name);

Expand Down

0 comments on commit e1f8886

Please sign in to comment.