You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 4, 2022. It is now read-only.
When using the autoinit option and a HTML block with multiple selects is added a runtime, the resulting dropdowns get mixed up (one of them contains all the options, and the others are not clickable).
To fix this, I changed the autoinit handler to support multiple selects:
$(document).on("DOMNodeInserted",function(e){var$this=$(e.target);if(!$this.is("select")){$this=$this.find('select');}if($this.is(options.autoinit)){// this is the changed part$this.each(function(){initElement($(this));});// end of patch}});
The text was updated successfully, but these errors were encountered:
When using the autoinit option and a HTML block with multiple selects is added a runtime, the resulting dropdowns get mixed up (one of them contains all the options, and the others are not clickable).
To fix this, I changed the autoinit handler to support multiple selects:
with this
The text was updated successfully, but these errors were encountered: