gavinksong/cs169-cucec

View on GitHub
app/assets/javascripts/Admins/online_mentors.js

Summary

Maintainability
A
0 mins
Test Coverage
//Indicates mentors who is online
$(function() {
    $('#online-mentors').change(function() {
        if($(this).prop('checked')) {
            $.get(admins_path, {sort: "online"});
        }
        else {
            $.get(admins_path, {sort: "ofline"});
        }
    })
})