Skip to content

Commit 942b428

Browse files
committed
Fix forunDoneOnBackNavigation not working #146
1 parent 095af76 commit 942b428

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
CHANGELOG
22
=========
33

4+
5+
v6.0.5
6+
-----
7+
- **Fixed:** unDoneOnBackNavigation not working https://github.com/techlab/jquery-smartwizard/issues/146
8+
49
v6.0.4
510
-----
611
- **Changed:** Code optimizations

dist/js/jquery.smartWizard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
99
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
1010

1111
/*!
12-
* jQuery SmartWizard v6.0.4
12+
* jQuery SmartWizard v6.0.5
1313
* The awesome step wizard plugin for jQuery
1414
* http://www.techlaboratory.net/jquery-smartwizard
1515
*
@@ -616,7 +616,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
616616
}
617617
}
618618

619-
this.steps.eq(this.current_index).removeClass(removeCss).addClass(addCss);
619+
this.steps.eq(this.current_index).addClass(addCss).removeClass(removeCss);
620620
} // Next step anchor > Remove other classes and add active class
621621

622622

dist/js/jquery.smartWizard.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "smartwizard",
33
"title": "jQuery Smart Wizard",
4-
"version": "6.0.4",
4+
"version": "6.0.5",
55
"author": {
66
"name": "Dipu Raj",
77
"email": "hello.techlab@gmail.com",

src/js/jquery.smartWizard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery SmartWizard v6.0.4
2+
* jQuery SmartWizard v6.0.5
33
* The awesome step wizard plugin for jQuery
44
* http://www.techlaboratory.net/jquery-smartwizard
55
*
@@ -513,7 +513,7 @@
513513
}
514514
}
515515

516-
this.steps.eq(this.current_index).removeClass(removeCss).addClass(addCss);
516+
this.steps.eq(this.current_index).addClass(addCss).removeClass(removeCss);
517517
}
518518

519519
// Next step anchor > Remove other classes and add active class

0 commit comments

Comments
 (0)