(function ($, Drupal) {
  
    'use strict';
  
    /**
     * Initialize custom behavior.
     *
     * @type {Drupal~behavior}
     */
    Drupal.behaviors.webformCustomBehavior = {
      attach: function (context) {
        $('#edit-send-to').select2({
          minimumResultsForSearch: Infinity
        });
      }
    }
  
  })(jQuery, Drupal);