// Custom checkbox and radios
function setupLabel() {
// Checkbox
var checkBox = ".checkbox";
var checkBoxInput = checkBox + " input[type='checkbox']";
var checkBoxChecked = "checked";
var checkBoxDisabled = "disabled";
// Radio
var radio = ".radio";
var radioInput = radio + " input[type='radio']";
var radioOn = "checked";
var radioDisabled = "disabled";
// Checkboxes
if ($(checkBoxInput).length) {
$(checkBox).each(function(){
$(this).removeClass(checkBoxChecked);
});
$(checkBoxInput + ":checked").each(function(){
$(this).parent(checkBox).addClass(checkBoxChecked);
});
$(checkBoxInput + ":disabled").each(function(){
$(this).parent(checkBox).addClass(checkBoxDisabled);
});
};
// Radios
if ($(radioInput).length) {
$(radio).each(function(){
$(this).removeClass(radioOn);
});
$(radioInput + ":checked").each(function(){
$(this).parent(radio).addClass(radioOn);
});
$(radioInput + ":disabled").each(function(){
$(this).parent(radio).addClass(radioDisabled);
});
};
};
$(document).ready(function(){
$("html").addClass("has-js");
// First let's prepend icons (needed for effects)
$(".checkbox, .radio").prepend("");
$(".checkbox, .radio").click(function(){
setupLabel();
});
setupLabel();
});