Files
2024-07-15 12:33:27 +02:00

16 lines
328 B
JavaScript
Executable File

/**
* @file
* Customization of checkbox.
*/
((Drupal) => {
/**
* Constructs a checkbox input element.
*
* @return {string}
* A string representing a DOM fragment.
*/
Drupal.theme.checkbox = () =>
'<input type="checkbox" class="form-checkbox form-boolean form-boolean--type-checkbox"/>';
})(Drupal);