readme...
This commit is contained in:
parent
e2b2575ee8
commit
6fbc17d900
1 changed files with 4 additions and 1 deletions
|
@ -522,8 +522,11 @@ Steps adds the following options to Ideal Forms:
|
|||
nav: '.idealsteps-nav', // navigation
|
||||
navItems: 'li', // navigation element that receives events
|
||||
// Build nav items as "Step 1", "Step 2"... automatically
|
||||
// or pass your own custom function.
|
||||
// Set to `false` to use your own custom markup
|
||||
buildNavItems: true,
|
||||
buildNavItems:function(i) {
|
||||
return 'Step '+ (i+1);
|
||||
},
|
||||
wrap: '.idealsteps-wrap',
|
||||
step: '.idealsteps-step',
|
||||
activeClass: 'idealsteps-step-active',
|
||||
|
|
Loading…
Reference in a new issue