Skip to content

Commit

Permalink
docs: update links to example app to point to github pages
Browse files Browse the repository at this point in the history
  • Loading branch information
MrWolfZ committed Mar 13, 2021
1 parent 3526182 commit 7fef985
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ This release requires TypeScript >=2.8.0 for the conditional type support. It al
* add common set of validation functions ([40308d4](https://github.com/MrWolfZ/ngrx-forms/commit/40308d4))
* add support for user defined properties on form controls and groups ([d9778d2](https://github.com/MrWolfZ/ngrx-forms/commit/d9778d2))
* introduce concept of `FormViewAdapter` and rewrite all control value accessors from scratch as view adapters (see the [documentation](docs/CUSTOM_CONTROLS.md) for more details)
* extend [example application](https://ngrx-forms-example-app-v2.herokuapp.com/) to contain multiple examples
* extend [example application](https://mrwolfz.github.io/ngrx-forms/) to contain multiple examples
* added overloads for many update functions that make casting the state unnecessary in certain situations
* added lots of inline comments to the API making it easier to understand what certain functions do right in your IDE

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

**ngrx-forms** brings the strengths of the redux state management model to the world of forms in applications that are using Angular and ngrx. The mechanisms that Angular provides for working with forms are inherently mutable, local, and hard to debug. This library offers a different model for working with forms. Instead of storing the state of form controls inside the components we put them in the ngrx store. We update the state with actions which allows easy debugging just like any other redux application. **ngrx-forms** also provides powerful mechanisms to update, validate and generally manage large complex forms. It contains APIs for synchronous and asynchronous validation, creating dynamic forms, integrating with custom form elements, and much more.

To get to know more you can either read the [official documentation](http://ngrx-forms.readthedocs.io/en/master) or visit the [example application](https://ngrx-forms-example-app-v2.herokuapp.com/).
To get to know more you can either read the [official documentation](http://ngrx-forms.readthedocs.io/en/master) or visit the [example application](https://mrwolfz.github.io/ngrx-forms/).

#### Installation

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This documentation will help you understand how to include **ngrx-forms** in you

Use the navigation on the left to browse to the different topics. For newcomers it is recommended to read the quick introduction below and then move on to the [user guide](user-guide/index.md).

You can also visit the [example application](https://ngrx-forms-example-app-v2.herokuapp.com/) to see **ngrx-forms** live in action.
You can also visit the [example application](https://mrwolfz.github.io/ngrx-forms/) to see **ngrx-forms** live in action.

#### Motivation

Expand Down

0 comments on commit 7fef985

Please sign in to comment.