semanticui-8.x-1.x-dev/js/checkbox.js
js/checkbox.js
/**
* @file
* Initialize checkbox elements.
*/
(function ($) {
/**
* Updates checkbox elements to use full featured Semantic UI Checkbox.
*/
Drupal.behaviors.semanticuiInitializeCheckbox = {
attach: function (context, settings) {
$('.ui.checkbox', context).each(function () {
$(this).checkbox();
});
}
};
})(jQuery);
