Skip to content
Snippets Groups Projects

#3351930: Drupal behaviors not running when element is shown

2 files
+ 8
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 7
0
@@ -195,6 +195,13 @@
}
e.effect = effect;
originalHandler(e);
// Ensure Drupal behaviors get attached to visible fields only once.
if (e.type === 'state:visible') {
once('conditional-fields', e.target).forEach(() => {
Drupal.attachBehaviors(e.target);
});
}
};
}
});
Loading