Move all files to 2017/

This commit is contained in:
Oliver Davies 2025-09-29 22:25:17 +01:00
parent ac7370f67f
commit 2875863330
15717 changed files with 0 additions and 0 deletions

View file

@ -1,58 +0,0 @@
/**
* @file
* JavaScript behaviors for jQuery UI buttons (checkboxradio) element integration.
*/
(function ($, Drupal) {
'use strict';
Drupal.webform = Drupal.webform || {};
Drupal.webform.buttons = Drupal.webform.buttons || {};
Drupal.webform.buttons.selector = Drupal.webform.buttons.selector || [
// Applies to Classy, Bartik, and Seven themes.
'.js-webform-buttons .form-radios',
// Applies to Stable and Bootstrap themes.
'.js-webform-buttons .js-form-type-radio'
].join(',');
/**
* Create jQuery UI buttons element.
*
* @type {Drupal~behavior}
*/
Drupal.behaviors.webformButtons = {
attach: function (context) {
$(context).find(Drupal.webform.buttons.selector).once('webform-buttons').each(function () {
var $buttons = $(this);
// Remove classes around radios and labels and move to main element.
$buttons.find('input[type="radio"], label').each(function () {
$buttons.append($(this).removeAttr('class'));
});
// Remove all empty div wrappers.
$buttons.find('div').remove();
// Must reset $buttons since the contents have changed.
$buttons = $(this);
// Get radios.
var $input = $buttons.find('input[type="radio"]');
// Create checkboxradio.
$input.checkboxradio({icon: false});
// Disable checkboxradio.
$input.checkboxradio('option', 'disabled', $input.is(':disabled'));
// Turn checkboxradio off/on when the input is disabled/enabled.
// @see webform.states.js
$input.on('webform:disabled', function () {
$input.checkboxradio('option', 'disabled', $input.is(':disabled'));
});
});
}
};
})(jQuery, Drupal);