Ion-item touch doesn't work android 4.2.1

Hello,

I have a problem with with Android 4.2.1.
When I tap on item, nothing happens with ionic 1.0.0 beta1 , 1.0.0 beta 2 … 1.0.0 beta 6
I use cordova to generate hybrid app.

<ion-content class="has-header has-subheader">
        <ion-list>
            <ion-item ng-repeat="employee in vm.employees"  nh-href="#/employee/{{employee.id}}">
                <h3>{{employee.firstName}} {{employee.lastName}}</h3>
                <p>{{employee.title}}</p>
            </ion-item>
        </ion-list>
    </ion-content>

Is this your actual code? If so try using ng-href instead of nh-href :smile:

Sorry in my code it’s “ng-href”.

When i load app in first time , button with ng-href don’t work in android 4.2.1 . When I close app and reload, sometime the button work.
I haven’t js errors

Thx