Skip to content

Commit

Permalink
Change CA to RA
Browse files Browse the repository at this point in the history
  • Loading branch information
benthemonkey committed Oct 13, 2017
1 parent 3a1b448 commit a11f31e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion js/points-center/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var i, table, events;

var columnFilter = function() {
var committees = $('#committeeFilter').find('option:selected').map(function() {
return this.innerHTML;
return this.value;
}).get();
var ims = $('#imFilter').val();
var n = 0;
Expand Down
8 changes: 4 additions & 4 deletions spc-submission.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,17 @@
<div class="form-group committee-control col-md-4 col-sm-6">
<label class="control-label">Committee:</label>
<select id="committee" class="form-control">
<option class='not-standing-committee'>Select One</option>
<option class='not-standing-committee'>Exec</option>
<option class="not-standing-committee">Select One</option>
<option class="not-standing-committee">Exec</option>
<option>Academic</option>
<option>Facilities</option>
<option>Faculty</option>
<option>IT</option>
<option>Philanthropy</option>
<option>Publications</option>
<option>Social</option>
<option class='not-standing-committee'>CA</option>
<option class='not-standing-committee'>Other</option>
<option class="not-standing-committee" value="CA">RA</option>
<option class="not-standing-committee">Other</option>
</select>
</div>

Expand Down
2 changes: 1 addition & 1 deletion spc-table.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<option selected>Philanthropy</option>
<option selected>Publications</option>
<option selected>Social</option>
<option selected>CA</option>
<option selected value="CA">RA</option>
<option selected>Other</option>
</select>
<div class="btn-group placeholder">
Expand Down

0 comments on commit a11f31e

Please sign in to comment.