Open
Description
Firstly, thanks for providing this nifty way of working with ionic slide box. Great plugin to have.
I am conditionally rendering ion-wizard-step using following
<ion-slide ion-wizard-step ng-if="options.something" next-condition="options.something_else">
</ion-slide>
using ng-if on ion-slide works well when its false. When its true, it messes up the next-condition (button is disabled even when condition is true). Using ng-if on a parent tag like <div>
renders a blank slide. Using ng-show works correctly when its true but things fall apart when it is false.
Is there an appropriate way to conditionally render an ion-slide ion-wizard-step ?
As an alternative, It can be also helpful to have ion-wizard-skip-step that would skip the step when doing next/prev over looking next/prev conditions.
Thanks