Skip to content

Commit

Permalink
Fix forunDoneOnBackNavigation not working #146
Browse files Browse the repository at this point in the history
  • Loading branch information
techlab committed Aug 7, 2022
1 parent 095af76 commit 942b428
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========


v6.0.5
-----
- **Fixed:** unDoneOnBackNavigation not working https://github.com/techlab/jquery-smartwizard/issues/146

v6.0.4
-----
- **Changed:** Code optimizations
Expand Down
4 changes: 2 additions & 2 deletions dist/js/jquery.smartWizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
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); }

/*!
* jQuery SmartWizard v6.0.4
* jQuery SmartWizard v6.0.5
* The awesome step wizard plugin for jQuery
* http://www.techlaboratory.net/jquery-smartwizard
*
Expand Down Expand Up @@ -616,7 +616,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
}
}

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


Expand Down
4 changes: 2 additions & 2 deletions dist/js/jquery.smartWizard.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "smartwizard",
"title": "jQuery Smart Wizard",
"version": "6.0.4",
"version": "6.0.5",
"author": {
"name": "Dipu Raj",
"email": "hello.techlab@gmail.com",
Expand Down
4 changes: 2 additions & 2 deletions src/js/jquery.smartWizard.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery SmartWizard v6.0.4
* jQuery SmartWizard v6.0.5
* The awesome step wizard plugin for jQuery
* http://www.techlaboratory.net/jquery-smartwizard
*
Expand Down Expand Up @@ -513,7 +513,7 @@
}
}

this.steps.eq(this.current_index).removeClass(removeCss).addClass(addCss);
this.steps.eq(this.current_index).addClass(addCss).removeClass(removeCss);
}

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

0 comments on commit 942b428

Please sign in to comment.