Documentation! + some little fixes to add consistency between components

This commit is contained in:
Keegan
2016-02-16 01:03:21 -08:00
parent b0ac596543
commit 24bfc54991
27 changed files with 724 additions and 1010 deletions
+2 -1
View File
@@ -7,6 +7,7 @@ module.exports = {
manipulator: 'checkboxgroup',
defaults: {
label: '',
options: []
options: [],
attributes: {}
}
};
+1 -4
View File
@@ -3,8 +3,5 @@
module.exports = {
name: 'footer',
template: require('../../templates/components/footer.tpl'),
manipulator: 'html',
defaults: {
attributes: {}
}
manipulator: 'html'
};
-1
View File
@@ -5,7 +5,6 @@ module.exports = {
template: require('../../templates/components/heading.tpl'),
manipulator: 'html',
defaults: {
attributes: {},
size: 4
}
};
+2 -1
View File
@@ -7,6 +7,7 @@ module.exports = {
manipulator: 'radiogroup',
defaults: {
label: '',
options: []
options: [],
attributes: {}
}
};
+2 -1
View File
@@ -7,7 +7,8 @@ module.exports = {
manipulator: 'val',
defaults: {
label: '',
options: []
options: [],
attributes: {}
},
initialize: function() {
var self = this;
+1 -2
View File
@@ -3,9 +3,8 @@
module.exports = {
name: 'submit',
template: require('../../templates/components/submit.tpl'),
manipulator: 'val',
manipulator: 'html',
defaults: {
label: '',
attributes: {}
}
};
+1 -4
View File
@@ -3,8 +3,5 @@
module.exports = {
name: 'text',
template: require('../../templates/components/text.tpl'),
manipulator: 'html',
defaults: {
attributes: {}
}
manipulator: 'html'
};