autolab/Autolab

View on GitHub
app/assets/javascripts/sort-toggle.js

Summary

Maintainability
A
0 mins
Test Coverage
$("#sort-status").change(function () {
  var checked = $(this).is(":checked");
  if (checked) {
    $("#unsorted_cuds").hide();
    $("#sorted_cuds").show();
  } else {
    $("#sorted_cuds").hide();
    $("#unsorted_cuds").show();
  }
});