Closed
Description
Please add this fix to the code:
$( document ).bind( "mousedown.selectmenu-" + this.ids[ 0 ], function( event ) {
//check if open and if the clicket targes parent is the same
if (!event.target.offsetParent) {
self.close(event);
return;
}
if ( self.isOpen && self.ids[ 1 ] != event.target.offsetParent.id ) {
self.close( event );
}
});