Hello,
I need to put reorder button in my list on the left. What is the best way to do that?
Here is my code:
<ion-content>
<ion-list show-reorder="data.showReorder = true">
<ion-item ng-repeat="topic in topics" href="#/editTopic/{{topic.id}}">
{{topic.name}}
<ion-reorder-button class="ion-ios7-drag"
on-reorder="moveItem(topic, $fromIndex, $toIndex)">
</ion-reorder>
</ion-item>
</ion-list>
</ion-content>