Commit c76b1db1 authored by Björn Brala's avatar Björn Brala Committed by Björn Brala
Browse files

Issue #3288137 by Lal_, Project Update Bot, bbrala, mglaman: Automated Drupal...

Issue #3288137 by Lal_, Project Update Bot, bbrala, mglaman: Automated Drupal 10 compatibility fixes
parent a115909e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
   */
  Drupal.behaviors.resourcesTableFilterByText = {
    attach: function (context, settings) {
      var $input = $('input.jsonapi-resources-filter-text', context).once('jsonapi-resources-filter-text');
      var $input = $(once('jsonapi-resources-filter-text', 'input.jsonapi-resources-filter-text', context));
      var $table = $($input.attr('data-table'));
      var $rows;

+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
   */
  Drupal.behaviors.jsonapi_extras_expandable_rows_table = {
    attach: function (context, settings) {
      var $advanced_opts_links = $('.toggle-expanded', context).once('toggle-expanded');
      var $advanced_opts_links = $(once('toggle-expanded', '.toggle-expanded', context));

      $advanced_opts_links.click(function () {
        $(this).removeClass("content-collapsed content-expanded");
+1 −2
Original line number Diff line number Diff line
name: JSON:API Extras
type: module
description: Builds on top of JSON:API to deliver extra functionality.
core: 8.x
core_version_requirement: '^8 || ^9'
core_version_requirement: '^9.2 || ^10'
package: Web services
configure: jsonapi_extras.settings
dependencies:
+2 −2
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ admin:
  dependencies:
    - core/jquery
    - core/drupal
    - core/jquery.once
    - core/once

expandable_rows_table:
  version: VERSION
@@ -20,4 +20,4 @@ expandable_rows_table:
  dependencies:
    - core/jquery
    - core/drupal
    - core/jquery.once
    - core/once
+1 −2
Original line number Diff line number Diff line
name: JSON API Defaults
type: module
description: Builds on top of JSON API to deliver extra functionality.
core: 8.x
core_version_requirement: '^8 || ^9'
core_version_requirement: '^9.2 || ^10'
package: Web services
dependencies:
  - jsonapi:jsonapi
Loading