twitter-bootstrap-wizard icon indicating copy to clipboard operation
twitter-bootstrap-wizard copied to clipboard

Cannot make last but one tab the finish one

Open sebastianvirlan opened this issue 8 years ago • 0 comments

Hi, I have a wizard for adding an item. The last step is optional so I don't count it on the progress bar.

I didn't manage to show the Finish button on the last but one tab, it only appears on the last one.

screenshot 119

                if($current == ($total - 1)) {
                    $('#rootwizard').find('.pager .next').hide();
                    $('#rootwizard').find('.pager .finish').show();
                    $('#rootwizard').find('.pager .finish').removeClass('disabled');
                } else {
                    $('#rootwizard').find('.pager .finish').hide();
                    $('#rootwizard').find('.pager .next').show();
                }

sebastianvirlan avatar Apr 19 '16 22:04 sebastianvirlan