Fix select dropdown on iOS
This commit is contained in:
parent
419e991562
commit
7ce08921ad
@ -25,6 +25,8 @@ body {
|
||||
main {
|
||||
flex: 1 0 auto;
|
||||
}
|
||||
/* https://github.com/Dogfalo/materialize/issues/6464 */
|
||||
.select-wrapper * { transition: none !important; transform: none !important; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -101,6 +101,9 @@ $(document).ready(() => {
|
||||
)
|
||||
;
|
||||
appbody.append(block);
|
||||
if (!token || token == 'undefined') {
|
||||
$('#send').addClass("disabled");
|
||||
};
|
||||
|
||||
getBandz().then(bandz => {
|
||||
$('select').append(bandz.map(band => `<option value="${band.id}">${band.name}</option>`));
|
||||
|
Loading…
Reference in New Issue
Block a user