Commit f081cdb3 authored by catch's avatar catch
Browse files

Issue #3280359 by bnjmnm: Make jQuery.form internal

parent 33de6eef
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -782,7 +782,8 @@ jquery.farbtastic:
  dependencies:
    - core/jquery

jquery.form:
internal.jquery.form:
  # Internal library. Do not depend on it outside core nor add new core usage.
  remote: https://github.com/jquery-form/form
  version: "4.3.0"
  license:
+1 −1
Original line number Diff line number Diff line
@@ -326,7 +326,7 @@ public static function preRenderAjaxForm($element) {

    // Attach JavaScript settings to the element.
    if (isset($element['#ajax']['event'])) {
      $element['#attached']['library'][] = 'core/jquery.form';
      $element['#attached']['library'][] = 'core/internal.jquery.form';
      $element['#attached']['library'][] = 'core/drupal.ajax';

      $settings = $element['#ajax'];
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ quickedit:
    - core/once
    - core/internal.underscore
    - core/internal.backbone
    - core/jquery.form
    - core/internal.jquery.form
    - core/drupal
    - core/drupal.displace
    - core/drupal.form
+1 −1
Original line number Diff line number Diff line
@@ -174,7 +174,7 @@ function common_test_library_info_alter(&$libraries, $module) {
    // Change the version of Farbtastic to 0.0.
    $libraries['jquery.farbtastic']['version'] = '0.0';
    // Make Farbtastic depend on jQuery Form to test library dependencies.
    $libraries['jquery.farbtastic']['dependencies'][] = 'core/jquery.form';
    $libraries['jquery.farbtastic']['dependencies'][] = 'core/internal.jquery.form';
  }

  // Alter the dynamically registered library definition.
+1 −1
Original line number Diff line number Diff line
@@ -14,5 +14,5 @@ views.ajax:
    - core/drupal
    - core/drupalSettings
    - core/once
    - core/jquery.form
    - core/internal.jquery.form
    - core/drupal.ajax
Loading