question_disabler.js 357 Bytes
$(document).ready(function() {
    $("input.question_disabler").change(function () {
        // Disables the body of the question.
        // The flip switch is on the bar, and is still accessible.
        $(this).parent().parent().next().slideToggle("fast");
    });
    // $(function () {
    //     $('[data-toggle="popover"]').popover();
    // });
});