/** * DO NOT EDIT THIS FILE. * See the following change record for more information, * https://www.drupal.org/node/2815083 * @preserve **/ (function ($, Drupal) { Drupal.behaviors.MediaLibrarySelectAll = { attach: function attach(context) { var $view = $('.js-media-library-view[data-view-display-id="page"]', context).once('media-library-select-all'); if ($view.length && $view.find('.js-media-library-item').length) { var $checkbox = $(Drupal.theme('checkbox')).on('click', function (_ref) { var currentTarget = _ref.currentTarget; var $checkboxes = $(currentTarget).closest('.js-media-library-view').find('.js-media-library-item input[type="checkbox"]'); $checkboxes.prop('checked', $(currentTarget).prop('checked')).trigger('change'); var announcement = $(currentTarget).prop('checked') ? Drupal.t('All @count items selected', { '@count': $checkboxes.length }) : Drupal.t('Zero items selected'); Drupal.announce(announcement); }); var $label = $('').text(Drupal.t('Select all media')); $label.prepend($checkbox); $view.find('.js-media-library-item').first().before($label); } } }; })(jQuery, Drupal);