Skip to content
This repository was archived by the owner on Apr 30, 2018. It is now read-only.

Commit 5d15186

Browse files
committed
Updated README with references to new repos
1 parent c6cb5f5 commit 5d15186

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

README.md

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,30 +22,25 @@ Formly for Angular is an AngularJS module which has directives to help customize
2222
See `bower.json` and `index.html` in the `master` branch for a full list / more details
2323

2424
## Install in your project
25-
- Install with Bower
25+
1. Install with Bower
2626
`$ bower install angular-formly --save`
2727

28-
- Include the javascript file in your index.html, Formly comes in the following flavors:
29-
- No templates: you provide all your custom templates using the `formlyConfigProvider`
28+
2. Include the javascript file in your index.html, Formly without any form templates. You can create your own or use some of our prebuilt templates which cover basic form types, then extend with your own as needed.
3029

3130
`<script src="bower_components/angular-formly/dist/formly.min.js"></script>`
3231

33-
- Vanilla: no fancy styling, just plain html
32+
> *Prebuilt Templates*
33+
- [Vanilla Template](https://github.com/formly-js/angular-formly-templates-vanilla#install-in-your-project): no fancy styling, just plain html
34+
- [Bootstrap Templates](https://github.com/formly-js/angular-formly-templates-bootstrap#install-in-your-project): bootstrap compatible forms, form-groups, etc.
3435

35-
`<script src="bower_components/angular-formly/dist/formly.vanilla.min.js"></script>`
36+
> DIY: Regardless of which flavor you use, you can create your own templates with `formlyConfigProvider`. Use any of the builds above and override all the templates or just the ones you need.
3637
37-
- Bootstrap: bootstrap compatible forms, form-groups, etc.
38-
39-
`<script src="bower_components/angular-formly/dist/formly.bootstrap.min.js"></script>`
40-
41-
- DIY: Regardless of which flavor you use, you can create your own templates with `formlyConfigProvider`. Use any of the builds above and override all the templates or just the ones you need.
42-
43-
- Add 'formly' as a required module to your angular app, usually in `app.js`:
38+
3. Add 'formly' as a required module to your angular app, usually in `app.js`:
4439
`var app = angular.module('app', ['ng', 'ui.router', 'formly']);`
4540

4641
## Documentation
4742

48-
*Note:* This `README.md` is for the latest version of `formly`. There have been some changes in the latest version which is not stable. For documentation on the latest stable version, see the [0.0.16 documentation](https://github.com/formly-js/angular-formly/tree/0.0.16)
43+
*Note:* This `README.md` is for the latest version of `formly`. There have been some changes in the latest version which is not stable. For documentation on the latest stable version, see the [1.0.0 documentation](https://github.com/formly-js/angular-formly/tree/1.0.0)
4944

5045
You can add a formly-form in your HTML templates as shown below.
5146
```html

0 commit comments

Comments
 (0)