Skip to content

Commit 536ddda

Browse files
author
David Luecke
committed
More documentation
1 parent 2f591d0 commit 536ddda

File tree

4 files changed

+73
-0
lines changed

4 files changed

+73
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.project
22
.settings//.project
3+
/.project

css/stylesheet.css

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
@CHARSET "UTF-8";
2+
3+
body { background-color: #A0A0A0; font-family: sans-serif;
4+
font-size: 11pt; }
5+
6+
.corner {
7+
-moz-border-radius: 15px;
8+
border-radius: 15px;
9+
}
10+
11+
#align
12+
{
13+
margin: 0px auto;
14+
width: 800px;
15+
background-color: #FFFFFF;
16+
padding: 15px;
17+
}
18+
19+
textarea.dform
20+
{
21+
width: 400px;
22+
height: 300px;
23+
border: 2px solid #505050;
24+
padding: 15px;
25+
background-color: #A0A0A0;
26+
font-size: 80%;
27+
}
28+
29+
form.dform { width: 300px; }
30+
31+
label
32+
{
33+
display : block;
34+
margin: 10px 0;
35+
}
36+
37+
input[type=text], input[type=password] { margin-left: 10px; }
38+
.exampleform { background-color: #DFDFDF; clear: all; }

js/jquery.dform.ui.js

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
(function($)
2+
{
3+
$.dform.subscribe("type", function(options, type) {
4+
// TODO add jQuery UI classes
5+
});
6+
7+
$.dform.subscribe("[type=datepicker]", function(options) {
8+
// TODO datepicker
9+
});
10+
11+
$.dform.subscribe("[type=button]", function(options) {
12+
// TODO jquery ui button
13+
});
14+
15+
$.dform.subscribe("[type=tabs]", function(options) {
16+
// TODO jquery ui button
17+
});
18+
19+
$.dform.subscribe("[type=accordion]", function(options) {
20+
// TODO forms in accordion
21+
});
22+
23+
$.dform.subscribe("[type=progressbar]", function(options) {
24+
// TODO
25+
});
26+
27+
$.dform.subscribe("[type=autocomplete]", function(options) {
28+
// TODO
29+
});
30+
31+
$.dform.subscribe("[type=slider]", function(options) {
32+
// TODO
33+
});
34+
});

js/jquery.dform.validation.js

Whitespace-only changes.

0 commit comments

Comments
 (0)