Skip to content

Commit 1345067

Browse files
committed
links to the new homepage
1 parent 5bf75c3 commit 1345067

File tree

2 files changed

+19
-10
lines changed

2 files changed

+19
-10
lines changed

README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ Angular Schema Form [![alt text][1.1]][1]
88

99
Generate forms from JSON schemas using AngularJS!
1010

11+
Web Page
12+
--------
13+
[http://textalk.github.io/angular-schema-form/](http://textalk.github.io/angular-schema-form/)
14+
1115
Demo Time!
1216
----------
1317
[Try out the example page](http://textalk.github.io/angular-schema-form/examples/bootstrap-example.html).
@@ -146,15 +150,7 @@ angular.module('myModule', ['schemaForm']);
146150

147151
Add-ons
148152
------
149-
There are a couple of add-ons, a date picker, a colorpicker and two wysiwyg editors.
150-
They have their own repos and you can find them here with usage instructions:
151-
152-
* [https://github.com/Textalk/angular-schema-form-datepicker](https://github.com/Textalk/angular-schema-form-datepicker)
153-
* [https://github.com/Textalk/angular-schema-form-colorpicker](https://github.com/Textalk/angular-schema-form-colorpicker)
154-
* [https://github.com/Textalk/angular-schema-form-tinymce](https://github.com/Textalk/angular-schema-form-tinymce)
155-
* [https://github.com/webcanvas/angular-schema-form-ckeditor](https://github.com/webcanvas/angular-schema-form-ckeditor)
156-
* [https://github.com/Textalk/angular-schema-form-fontpicker](https://github.com/Textalk/angular-schema-form-fontpicker)
157-
153+
There are several add-ons available, for a full list see the [web page](http://textalk.github.io/angular-schema-form/).
158154
Your can also [create your own add-ons!](docs/extending.md)
159155

160156
Contributing

docs/extending.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ It takes the form definition as an argument.
109109
| schemaError() | The current error object from tv4js |
110110

111111

112-
### Setting up schema defualts
112+
### Setting up schema defaults
113113
So you got this shiny new add-on that adds a fancy field type, but feel a bit bummed out that you
114114
need to specify it in the form definition all the time? Fear not because you can also add a "rule"
115115
to map certain types and conditions in the schema to default to your type.
@@ -149,6 +149,19 @@ var datepicker = function(name, schema, options) {
149149
schemaFormProvider.defaults.string.unshift(datepicker);
150150
```
151151

152+
### Sharing your add-on with the world
153+
So you made an add-on, why not share it with us? On the front page,
154+
[http://textalk.github.io/angular-schema-form/](http://textalk.github.io/angular-schema-form/), we
155+
maintain a list of add ons based on a query of the bower register, and we love to see your add-on
156+
there.
157+
158+
Any [bower](http://bower.io) package with a name starting with `angular-schema-form-` or that has
159+
the `keyword` `angular-schema-form-add-on` in its `bower.json` will be picked up. It's cached so
160+
there can be a delay of a day or so.
161+
162+
So [make a bower package](http://bower.io/docs/creating-packages/), add the keyword
163+
`angular-schema-form-add-on` and [register it](http://bower.io/docs/creating-packages/#register)!
164+
152165
Decorators
153166
----------
154167
Decorators are a second way to extend Schema Form, the thought being that you should easily be able

0 commit comments

Comments
 (0)