claro-8.x-1.x-dev/js/theme.js
js/theme.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | /** * DO NOT EDIT THIS FILE. * See the following change record for more information, * @preserve **/ ( function (Drupal) { Drupal.theme.checkbox = function () { return '<input type="checkbox" class="form-checkbox form-boolean form-boolean--type-checkbox"/>' ; }; Drupal.theme.dropbuttonToggle = function (options) { return '<li class="dropbutton-toggle"><button type="button" class="dropbutton__toggle"><span class="visually-hidden">' + options.title + '</span></button></li>' ; }; })(Drupal); |