Skip to content

Commit

Permalink
Add bower support.
Browse files Browse the repository at this point in the history
  • Loading branch information
kflorence committed Apr 13, 2014
1 parent f4caf9e commit 73b436d
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
12 changes: 12 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "jquery-wizard",
"version": "1.0.1",
"main": [
"src/jquery.wizard.js"
],
"dependencies": {
"jquery": ">=1.3.2",
"jquery.ui.core": ">=1.8.0",
"jquery.ui.widget": ">=1.8.0"
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery.wizard",
"version": "1.0.0-rc3",
"name": "jquery-wizard",
"version": "1.0.1",
"title": "jQuery.wizard()",
"author": {
"name": "Kyle Florence",
Expand Down
4 changes: 2 additions & 2 deletions src/jquery.wizard.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
jQuery.wizard v1.0.0
jQuery.wizard v1.0.1
https://github.com/kflorence/jquery-wizard/
An asynchronous form wizard that supports branching.
Expand Down Expand Up @@ -58,7 +58,7 @@ $.each( "branch form header step wrapper".split( " " ), function() {
});

$.widget( "kf." + wizard, {
version: "1.0.0",
version: "1.0.1",
options: {
animations: {
show: {
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0
1.0.1

0 comments on commit 73b436d

Please sign in to comment.