Skip to content

Commit d41a105

Browse files
author
Rafael Staib
committed
Added a fix for issue rstaib#24
1 parent 358f1e3 commit d41a105

10 files changed

+11
-7
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.0.4
4+
5+
- Fixed an issue regarding currentIndex on finish and finished event. Closes issue [#24](https://github.com/rstaib/jquery-steps/issues/24) and [#33](https://github.com/rstaib/jquery-steps/issues/33)
6+
37
## 1.0.3
48

59
- Adding an id to the outer control wrapper tag will have as of now an impact on the internal uniqueid handling and therefore to the sub tag ids as well

build/jQuery.Steps.1.0.3.nupkg

-19.2 KB
Binary file not shown.

build/jQuery.Steps.1.0.4.nupkg

19.2 KB
Binary file not shown.

build/jquery.steps-1.0.3.zip

-18.4 KB
Binary file not shown.

build/jquery.steps-1.0.4.zip

18.4 KB
Binary file not shown.

build/jquery.steps.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery Steps v1.0.3 - 10/20/2013
2+
* jQuery Steps v1.0.4 - 12/17/2013
33
* Copyright (c) 2013 Rafael Staib (http://www.jquery-steps.com)
44
* Licensed under MIT http://www.opensource.org/licenses/MIT
55
*/
@@ -727,7 +727,7 @@ function paginationClickHandler(event)
727727
switch (href.substring(href.lastIndexOf("#")))
728728
{
729729
case "#finish":
730-
finishStep(wizard, options, state);
730+
finishStep(wizard, state);
731731
break;
732732

733733
case "#next":

build/jquery.steps.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jquery-steps",
33
"title": "jQuery Steps",
4-
"version": "1.0.3",
4+
"version": "1.0.4",
55
"description": "A powerful jQuery wizard plugin that supports accessibility and HTML5",
66
"homepage": "http://www.jquery-steps.com",
77
"author": {

src/privates.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ function paginationClickHandler(event)
720720
switch (href.substring(href.lastIndexOf("#")))
721721
{
722722
case "#finish":
723-
finishStep(wizard, options, state);
723+
finishStep(wizard, state);
724724
break;
725725

726726
case "#next":

steps.jquery.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"tabs",
1515
"steps"
1616
],
17-
"version": "1.0.3",
17+
"version": "1.0.4",
1818
"author": {
1919
"name": "Rafael Staib",
2020
"email": "me@rafaelstaib.com",

0 commit comments

Comments
 (0)