Skip to content
Snippets Groups Projects

Issue #3238915: Refactor (if feasible) uses of the jQuery ready function to use VanillaJS

Closed Issue #3238915: Refactor (if feasible) uses of the jQuery ready function to use VanillaJS
Closed Harumi Jang requested to merge issue/drupal-3238915:3238915-refactor-if-feasible into 9.3.x
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
  • 434cecac
    Issue #3309247 by pratik_specbee, neclimdul: Unused $theme_engine variable in... · 434cecac
    Lauri Timmanee authored
    Issue #3309247 by pratik_specbee, neclimdul: Unused $theme_engine variable in ThemeInitialization.php
@@ -135,7 +135,7 @@ public function getActiveThemeByName($theme_name) {
*/
public function loadActiveTheme(ActiveTheme $active_theme) {
// Initialize the theme.
if ($theme_engine = $active_theme->getEngine()) {
if ($active_theme->getEngine()) {
// Include the engine.
include_once $this->root . '/' . $active_theme->getOwner();
foreach ($active_theme->getBaseThemeExtensions() as $base) {
Loading