Fix iOS Safari dropdown visibility
This commit is contained in:
		@@ -133,10 +133,16 @@ function updateMenu(availableOptions)
 | 
			
		||||
            if (!array.includes($(this).prop("value")))
 | 
			
		||||
            {
 | 
			
		||||
                if ($(this).prop("value") != "")
 | 
			
		||||
                {
 | 
			
		||||
                    $(this).hide();
 | 
			
		||||
                    $(this).attr('disabled', 'disabled'); // for iOS
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            else
 | 
			
		||||
            {
 | 
			
		||||
                $(this).show();
 | 
			
		||||
                $(this).removeAttr('disabled'); // for iOS
 | 
			
		||||
            }
 | 
			
		||||
        });
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user