Moritz Krause
Moritz Krause

Hey, i found a solution for this, by writing my own (modified) select adapter. This will override the default behaviour from select2. ```js ;(function (window) { window.jQuery(function ($) { /*...
Here is my solution for this. ```js jQuery(function($) { var MOBILE_BREAKPOINT = 768 var $window = $(window) var $dropdowns = $('[data-hover="dropdown"]') var resizeId; var initilized = true // Debounce resize...