We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6da04d commit 66d6b07Copy full SHA for 66d6b07
core/src/components/select/test/bottom-content/index.html
@@ -35,7 +35,7 @@
35
</style>
36
</head>
37
38
- <body>
+ <body onLoad="onLoad()">
39
<ion-app>
40
<ion-header>
41
<ion-toolbar>
@@ -111,6 +111,15 @@ <h2>Helper Text: Wrapping</h2>
111
</ion-app>
112
113
<script>
114
+ // Hide the toggle fill button on ios mode since it's not supported
115
+ function onLoad() {
116
+ const toggleFillButton = document.querySelector('button');
117
+
118
+ if (Ionic.mode === 'ios' && toggleFillButton) {
119
+ toggleFillButton.style.display = 'none';
120
+ }
121
122
123
const selects = document.querySelectorAll('ion-select');
124
125
function toggleFill() {
0 commit comments