File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
7
## 0.9.7
4
8
5
9
- 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 1030
1030
contentWrapper . html ( wizard . html ( ) ) ;
1031
1031
wizard . attr ( "role" , "application" ) . addClass ( options . cssClass ) . empty ( ) . append ( contentWrapper ) ;
1032
1032
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 ) ;
1035
1035
1036
1036
if ( stepTitles . length > stepContents . length )
1037
1037
{
You can’t perform that action at this time.
0 commit comments