question_disabler.js 470 Bytes
$(document).ready(function() {
    // $("input.question_disabler").bootstrapSwitch();
    $("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");
        // $(this).parent().parent().className = "panel panel-info";
    });
    $(function () {
        $('[data-toggle="popover"]').popover()
    })
});