Commit 535de43a authored by Shelane French's avatar Shelane French
Browse files

Issue #3296684: Drupal 10 compatibility fixes

parent f60898ef
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
name: 'Bootstrap Quicktabs'
type: module
description: 'Makes tabs from Bootstrap framework available to the Quicktabs module'
core_version_requirement: ^8.8 || ^9
core_version_requirement: ^8.8 || ^9 || ^10
package: 'Bootstrap'
dependencies:
  - drupal:quicktabs
+0 −6
Original line number Diff line number Diff line
@@ -3,9 +3,3 @@ bootstrap_tabs:
  css:
    theme:
      css/bootstrap_quicktabs.css: {}
  dependencies:
    - core/jquery
    - core/jquery.once
    - core/drupal
    - core/drupal.ajax
    - core/drupalSettings
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ class BootstrapAccordion extends TabRendererBase {
        'id' => $panel_id,
        'classes' => $panel_class,
        'title' => new TranslatableMarkup($tab['title']),
        'content' => render($render),
        'content' => \Drupal::service('renderer')->render($render),
      ];

      $panels["$panel_id"] = $panel;
+1 −1
Original line number Diff line number Diff line
@@ -149,7 +149,7 @@ class BootstrapQuickTabs extends TabRendererBase {
      $block_id = 'quicktabs-tabpage-' . $qt_id . '-' . $index;

      $tab_pages[$block_id] = [
        'content' => render($render),
        'content' => \Drupal::service('renderer')->render($render),
        'classes' => implode(' ', $classes),
      ];

+45 −45

File changed.

Contains only whitespace changes.