working on blank package; updated packages

This commit is contained in:
Sacha Greif 2014-12-08 10:28:56 +09:00
parent bdae77a41b
commit ea1407bd52
2 changed files with 17 additions and 4 deletions

View file

@ -5,7 +5,7 @@ accounts-password@1.0.4
accounts-twitter@1.0.2
accounts-ui-unstyled@1.1.4
accounts-ui@1.1.3
aldeed:autoform@4.0.2
aldeed:autoform@4.0.7
aldeed:collection2@2.2.0
aldeed:simple-schema@1.1.0
application-configuration@1.0.3
@ -68,8 +68,8 @@ meteor@1.1.3
meteorhacks:async@1.0.0
meteorhacks:fast-render@1.2.1
meteorhacks:kadira-binary-deps@1.3.1
meteorhacks:kadira@2.14.0
meteorhacks:meteorx@1.2.0
meteorhacks:kadira@2.15.1
meteorhacks:meteorx@1.2.1
meteorhacks:npm@1.2.1
meteorhacks:subs-manager@1.2.0
minifiers@1.1.2

View file

@ -1 +1,14 @@
both.js
var customProperty = {
propertyName: 'customProperty',
propertySchema: {
type: String, // property type
label: 'customLabel', // key string used for internationalization
optional: true, // make this property optional
autoform: {
editable: true, // make this property editable by users
group: 'xyz', // assign a custom form group
type: "bootstrap-datetimepicker" // assign a custom input type
}
}
}
addToPostSchema.push(customProperty);