amoffat / bootstrap-application-wizard

MIT License
1.85k stars 388 forks source link

Auto show not working correctly #102

Open snipiba opened 9 years ago

snipiba commented 9 years ago

When options is set to open automatically (open: true), then wizard is openned in modal but no card initialized. Is needed to set some class or attribute to define first card, or?

anagio commented 8 years ago

@snipiba as a work around to show the wizard when the page loads, you may use the function wizard.show(); after the wizard is initialized, from the demo an example is

            var wizard = $('#satellite-wizard').wizard({
                keyboard : false,
                contentHeight : 400,
                contentWidth : 700,
                backdrop: 'static'
            });

            wizard.show();