Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / views_ui / js / dialog.views.js
index 3f40b4ad5b9e431f90578ca3260433ab5a78de69..fde193530cf98b2e9f17700b2d42fee2e9ea20fe 100644 (file)
@@ -1,58 +1,46 @@
 /**
- * @file
- * Views dialog behaviors.
- */
+* DO NOT EDIT THIS FILE.
+* See the following change record for more information,
+* https://www.drupal.org/node/2815083
+* @preserve
+**/
 
 (function ($, Drupal, drupalSettings) {
-
-  'use strict';
-
   function handleDialogResize(e) {
     var $modal = $(e.currentTarget);
     var $viewsOverride = $modal.find('[data-drupal-views-offset]');
     var $scroll = $modal.find('[data-drupal-views-scroll]');
     var offset = 0;
-    var modalHeight;
+    var modalHeight = void 0;
     if ($scroll.length) {
-      // Add a class to do some styles adjustments.
       $modal.closest('.views-ui-dialog').addClass('views-ui-dialog-scroll');
-      // Let scroll element take all the height available.
-      $scroll.css({overflow: 'visible', height: 'auto'});
+
+      $scroll.css({ overflow: 'visible', height: 'auto' });
       modalHeight = $modal.height();
-      $viewsOverride.each(function () { offset += $(this).outerHeight(); });
+      $viewsOverride.each(function () {
+        offset += $(this).outerHeight();
+      });
 
-      // Take internal padding into account.
       var scrollOffset = $scroll.outerHeight() - $scroll.height();
       $scroll.height(modalHeight - offset - scrollOffset);
-      // Reset scrolling properties.
+
       $modal.css('overflow', 'hidden');
       $scroll.css('overflow', 'auto');
     }
   }
 
-  /**
-   * Functionality for views modals.
-   *
-   * @type {Drupal~behavior}
-   *
-   * @prop {Drupal~behaviorAttach} attach
-   *   Attaches modal functionality for views.
-   * @prop {Drupal~behaviorDetach} detach
-   *   Detaches the modal functionality.
-   */
   Drupal.behaviors.viewsModalContent = {
-    attach: function (context) {
+    attach: function attach(context) {
       $('body').once('viewsDialog').on('dialogContentResize.viewsDialog', '.ui-dialog-content', handleDialogResize);
-      // When expanding details, make sure the modal is resized.
+
       $(context).find('.scroll').once('detailsUpdate').on('click', 'summary', function (e) {
         $(e.currentTarget).trigger('dialogContentResize');
       });
     },
-    detach: function (context, settings, trigger) {
+    detach: function detach(context, settings, trigger) {
       if (trigger === 'unload') {
         $('body').removeOnce('viewsDialog').off('.viewsDialog');
       }
     }
   };
-
-})(jQuery, Drupal, drupalSettings);
+})(jQuery, Drupal, drupalSettings);
\ No newline at end of file