orbit-basic/app/assets/javascripts/lib/module-area.js

10 lines
246 B
JavaScript
Raw Normal View History

2013-09-11 10:38:56 +00:00
$(function() {
$(document).on('click',"*[data-toggle=buttons-checkbox] input",function(){
var d = $(this).parent().find("input[type=hidden]");
if($(this).is(":checked")){
d.val("1");
}else{
d.val("0");
}
})
});