You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/** |
|
* @file |
|
* Defines checkbox theme functions. |
|
*/ |
|
|
|
((Drupal) => { |
|
/** |
|
* Theme function for a checkbox. |
|
* |
|
* @return {string} |
|
* The HTML markup for the checkbox. |
|
*/ |
|
Drupal.theme.checkbox = () => |
|
`<input type="checkbox" class="form-checkbox"/>`; |
|
})(Drupal);
|
|
|