File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.9.8pre
4+
5+ - Nested tags which have the same node name as the body tag cause an exception. Closes issue [ #4 ] ( https://github.com/rstaib/jquery-steps/issues/4 )
6+
37## 0.9.7
48
59- On finish failed the last step button does not become highlighted as error. Closes issue [ #3 ] ( https://github.com/rstaib/jquery-steps/issues/3 )
Original file line number Diff line number Diff line change 10301030 contentWrapper . html ( wizard . html ( ) ) ;
10311031 wizard . attr ( "role" , "application" ) . addClass ( options . cssClass ) . empty ( ) . append ( contentWrapper ) ;
10321032
1033- var stepTitles = contentWrapper . find ( options . headerTag ) ,
1034- stepContents = contentWrapper . find ( options . bodyTag ) ;
1033+ var stepTitles = contentWrapper . children ( options . headerTag ) ,
1034+ stepContents = contentWrapper . children ( options . bodyTag ) ;
10351035
10361036 if ( stepTitles . length > stepContents . length )
10371037 {
You can’t perform that action at this time.
0 commit comments