- Issue created by @robbesaelens
When using multiple 'Range NoUiSliders' within the same Search API view, an error occurs in the browser console:
Uncaught Error: noUiSlider: Slider was already initialized.
This indicates that the NoUiSlider library is being initialized multiple times on the same element, likely due to the way Drupal attaches behaviors to dynamically loaded content. Additionally, PHP warnings related to undefined array keys appear in the logs:
Undefined array key "tooltips" in NoUiSliderWidget->buildConfigurationForm() (line 96)
Undefined array key "pips_values" in NoUiSliderWidget->buildConfigurationForm() (line 121)
Undefined array key "pips_density" in NoUiSliderWidget->buildConfigurationForm() (line 129)
Undefined array key "from" in NoUiSliderWidget->buildConfigurationForm() (line 151)
facets_range_nouislider
module.slider.js
to check if an instance already exists before creating a new one.tooltips
, pips_values
, etc.) to prevent undefined array key warnings in NoUiSliderWidget->buildConfigurationForm()
.None expected.
None expected.
None expected.
Active
1.0
Code