Skip to content

Commit 080e5c8

Browse files
committed
Refactored helper methods
1 parent 1ce2299 commit 080e5c8

13 files changed

+166
-260
lines changed

CHANGELOG.md

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

3+
## 1.0.5
4+
5+
- Added a cancel button
6+
- Fixed a bug regarding adding steps dynamically. Closes issue [#56](https://github.com/rstaib/jquery-steps/issues/56)
7+
38
## 1.0.4
49

510
- 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)

Gruntfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ module.exports = function (grunt)
1919
dist: {
2020
files: {
2121
'<%= pkg.folders.dist %>/jquery.steps.js': [
22+
'<%= pkg.folders.src %>/helper.js',
2223
'<%= pkg.folders.src %>/privates.js',
2324
'<%= pkg.folders.src %>/publics.js',
2425
'<%= pkg.folders.src %>/enums.js',
2526
'<%= pkg.folders.src %>/model.js',
26-
'<%= pkg.folders.src %>/defaults.js',
27-
'<%= pkg.folders.src %>/helper.js'
27+
'<%= pkg.folders.src %>/defaults.js'
2828
]
2929
}
3030
}

build/jQuery.Steps.1.0.4.nupkg

-19.2 KB
Binary file not shown.

build/jQuery.Steps.1.0.5.nupkg

19.2 KB
Binary file not shown.

build/jquery.steps-1.0.4.zip

-18.4 KB
Binary file not shown.

build/jquery.steps-1.0.5.zip

18.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)