gavinksong/cs169-cucec

View on GitHub
app/assets/javascripts/Mentors/mentorToggle.js

Summary

Maintainability
A
0 mins
Test Coverage

//Indicates whether a mentor is available to chat or not
$(function() {
    $('#available_mentor').change(function() {
        if($(this).prop('checked')) {
            $.get("mentors/available", {value: "1"});
        }
        else {
            $.get("mentors/available", {value: "0"});
        }
    })
})