iOS 7 Toggle control

Hey there,

I have a problem on iOS 7 with the toggle control. Tried it on iPhone 4S and iPad2. It just doesn’t toggle.
This is my html file. As simple as it could be^^

<!DOCTYPE html>
<html ng-app="sideMenu">
    <head>
        <meta charset="utf-8">

        <!-- Sets initial viewport load and disables zooming  -->
        <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
        <link href="lib/ionic/dist/css/ionic.css" rel="stylesheet">
        <script src="lib/ionic/dist/js/ionic.js" type="text/javascript"></script>
        <script src="lib/ionic/dist/js/ionic-angular.js" type="text/javascript"></script>
    </head>
    <body>
        <label class="toggle">
            <input type="checkbox">
            <div class="track">
                <div class="handle"></div>
            </div>
        </label>
    </body>
</html>

I have the same issue, toggles and checkboxes too. It seems like they trigger only with an extremely precise tap (e.g. tapping many many times on them, they eventually trigger).

Just updated Ionic to v0.9.15 and now toggle and checkboxes work fine!

1 Like

okey, thanks^^
I’ve to try this out.