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,39 +0,0 @@
/**
* @file
* JavaScript behaviors for webform off-canvas dialogs.
*
* @see misc/dialog/off-canvas.js
*/
(function ($, Drupal) {
'use strict';
/**
* Attaches webform off-canvas behaviors.
*
* @type {Drupal~behavior}
*
* @prop {Drupal~behaviorAttach} attach
* Attaches event listeners to window for off-canvas dialogs.
*/
Drupal.behaviors.webformOffCanvasEvents = {
attach: function () {
// Resize seven.theme tabs when off-canvas dialog opened and closed.
// @see core/themes/seven/js/nav-tabs.js
$(window).once('webform-off-canvas').on({
'dialog:aftercreate': function (event, dialog, $element, settings) {
if (Drupal.offCanvas.isOffCanvas($element)) {
$(window).trigger('resize.tabs');
}
},
'dialog:afterclose': function (event, dialog, $element, settings) {
if (Drupal.offCanvas.isOffCanvas($element)) {
$(window).trigger('resize.tabs');
}
}
});
}
};
})(jQuery, Drupal);