Skip to content

Commit 033c89c

Browse files
author
Rafael J. Staib
committed
Add slide left effect and exclude quint js from yuidoc task
1 parent 9ee3a0b commit 033c89c

File tree

6 files changed

+106
-69
lines changed

6 files changed

+106
-69
lines changed

Gruntfile.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ module.exports = function (grunt)
111111
version: '<%= pkg.version %>',
112112
url: '<%= pkg.homepage %>',
113113
options: {
114+
exclude: 'qunit-1.11.0.js',
114115
paths: '.',
115116
outdir: 'docs/'
116117
}
@@ -127,6 +128,7 @@ module.exports = function (grunt)
127128
grunt.loadNpmTasks('grunt-contrib-compress');
128129
grunt.loadNpmTasks('grunt-contrib-clean');
129130

130-
grunt.registerTask('default', ['clean', 'jshint', 'qunit']);
131-
grunt.registerTask('release', ['default', 'yuidoc', 'concat', 'uglify', 'compress']);
131+
grunt.registerTask('default', ['jshint', 'qunit']);
132+
grunt.registerTask('api', ['clean', 'yuidoc']);
133+
grunt.registerTask('release', ['default', 'api', 'concat', 'uglify', 'compress']);
132134
};

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,24 @@ wizard.steps("add", {
5959
});
6060
```
6161

62+
## Demo
63+
64+
An live demo area will be available soon!
65+
66+
## Documentation
67+
68+
Documentation will follow soon!
69+
70+
However, it is possible to generate a API documentation by using the following *GruntJS* command `grunt api`.
71+
72+
## Reporting an Issue
73+
74+
Instructions will follow soon!
75+
76+
## Contributing
77+
78+
Instructions will follow soon!
79+
6280
## License
6381

6482
Copyright (c) 2013 Rafael J. Staib Licensed under the [MIT license](https://github.com/rstaib/jquery-steps/blob/master/LICENSE.txt).

demo/css/jquery.steps.css

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929

3030
.wizard > .steps
3131
{
32-
display: inline-block;
3332
width: 600px;
33+
height: 30px;
3434
}
3535

3636
.wizard > .steps .number
@@ -74,8 +74,8 @@
7474

7575
.wizard > .content
7676
{
77-
display: inline-block;
7877
width: 600px;
78+
height: 300px;
7979
}
8080

8181
.wizard > .content > .title
@@ -87,8 +87,10 @@
8787
.wizard > .content > .body
8888
{
8989
border: 1px solid #CCC;
90-
width: 100%;
91-
height: 200px;
90+
float: left;
91+
position: absolute;
92+
width: 600px;
93+
height: 300px;
9294
}
9395

9496
.wizard > .content > .body > iframe
@@ -100,7 +102,6 @@
100102

101103
.wizard > .actions
102104
{
103-
display: inline-block;
104105
width: 600px;
105106
}
106107

demo/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ <h1>Basic Demo</h1>
4242
{
4343
$("#wizard").steps({
4444
headerTag: "h2",
45-
bodyTag: "section"
45+
bodyTag: "section",
46+
transitionEffect: 'slideLeft'
4647
});
4748
});
4849
</script>

0 commit comments

Comments
 (0)