Skip to content

Commit

Permalink
Small fixes and multiple wizard example added
Browse files Browse the repository at this point in the history
  • Loading branch information
Dipu Raj committed Apr 24, 2017
1 parent fa2e920 commit c063a97
Show file tree
Hide file tree
Showing 10 changed files with 228 additions and 18 deletions.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
[![Bower version](https://badge.fury.io/bo/smartwizard.svg)](https://badge.fury.io/bo/smartwizard)
[![Latest Stable Version](https://poser.pugx.org/techlab/smartwizard/v/stable)](https://packagist.org/packages/techlab/smartwizard)
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/techlab/SmartWizard/master/LICENSE)
[![Paypal](https://img.shields.io/badge/PayPal-dipuraj-blue.svg)](https://www.paypal.me/dipuraj)

Smart Wizard is a flexible and heavily customizable **jQuery step wizard plugin** with **Bootstrap** support. It is easy to implement and gives a neat and stylish interface for your forms, checkout screen, registration steps etc. Based on the feedback from our users over the past years we have come up with the **best ever built jQuery wizard plugin of all time**, All new Smart Wizard 4. The plugin is been completely rewritten from scratch, made it more powerful, robust, scalable and customizable. We have added a lot of features not limited to Bootstrap support, themes, customizable toolbars, customizable options, public methods, event support and a lot more. See the list of [features](http://techlaboratory.net/smartwizard#features), [demos](http://techlaboratory.net/smartwizard/demo) and [documentation](http://techlaboratory.net/smartwizard/documentation) for more details.

Expand Down Expand Up @@ -71,10 +72,6 @@ Features
+ Easy to implement, Minimal HTML required
+ and a lot more...

Version
-----
**SmartWizard v4.2.1**

License
----
[MIT License](https://github.com/techlab/SmartWizard/blob/master/LICENSE)
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smartwizard",
"version": "v4.2.1",
"version": "v4.2.2",
"homepage": "https://github.com/techlab/SmartWizard",
"authors": [
"Dipu Raj <[email protected]>"
Expand Down
1 change: 0 additions & 1 deletion dist/css/smart_wizard.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
display: block;
margin: 0;
padding: 0;
overflow: hidden;
position: relative;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/css/smart_wizard.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions dist/js/jquery.smartWizard.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* SmartWizard v4.1.7
* jQuery Wizard Plugin
* SmartWizard v4.2.2
* The awesome jQuery step wizard plugin with Bootstrap support
* http://www.techlaboratory.net/smartwizard
*
* Created by Dipu Raj
Expand Down Expand Up @@ -510,7 +510,7 @@
// Auto adjust height of the container
if (this.options.autoAdjustHeight) {
var selPage = this.steps.eq(idx).length > 0 ? $(this.steps.eq(idx).attr("href"), this.main) : null;
this.container.finish().animate({ height: selPage.outerHeight() }, this.options.transitionSpeed, function () {});
this.container.finish().animate({ minHeight: selPage.outerHeight() }, this.options.transitionSpeed, function () {});
}
return true;
},
Expand Down
Loading

0 comments on commit c063a97

Please sign in to comment.