closeOptionButtons

Is there an equivalent to $ionicListDelegate.closeOptionButtons()?

You should take a look at the conference app

https://github.com/driftyco/ionic-conference-app/blob/master/app/pages/schedule/schedule.html#L39

Here we’re creating a local variable to the sliding item.

https://github.com/driftyco/ionic-conference-app/blob/master/app/pages/schedule/schedule.html#L51

We can pass it into the click handler, which will pass it to the addFavorite function

https://github.com/driftyco/ionic-conference-app/blob/master/app/pages/schedule/schedule.js#L64

Then we can call close

https://github.com/driftyco/ionic-conference-app/blob/master/app/pages/schedule/schedule.js#L88

That’s working great.
Thanks