Clickable ion-list with show-reorder

Hello,

I have the great looking reorder working on one of my ion-list items.

<ion-content>
<ion-list show-reorder="true">
    <ion-item ng-click="ViewExperience(experience.id)" class="item-avatar" ng-repeat="experience in experiences" type="item-text-wrap">
        <img ng-src="{{experience.icon}}">
        <h2>{{experience.name}}</h2>
        <p class="">{{experience.notes}}</p>
        <ion-reorder-button class="ion-navicon" on-reorder="moveExperience(experience, $fromIndex, $toIndex)"></ion-reorder-button>
    </ion-item>
</ion-list>

Of course, when show-reorder is true ng-click stops working. This is expected behaviour (https://github.com/driftyco/ionic/issues/1904) but I was wondering if anyone knew of a workaround please?

I have tried putting the ng-click in the image and the text, but to no avail.

Thank you

Russ

Anyone, please?

An alternative is to have a second view to allow re-ordering, and leave the main view without the reorder option but clickable. I think instead though if I can’t get this working I’ll just have favourites that you click and it sends them to the top.

Thanks