Skip to content

Commit

Permalink
fix: fix broken documentation links
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasnetau committed Sep 25, 2023
1 parent d5648d1 commit fa6b69f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/formBuilder/controls.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Control architecture

Controls defined in this directory will be transpiled into the core `formBuilder` & `formRender` plugins. Only 'core' regularly used plugins should be included here. Plugins that have less common use-cases should be added as [control plugins](control-plugins) which are only loaded as required.
Controls defined in this directory will be transpiled into the core `formBuilder` & `formRender` plugins. Only 'core' regularly used plugins should be included here. Plugins that have less common use-cases should be added as [control plugins](control-plugins.md) which are only loaded as required.

All control classes should inherit from `src/js/control.js`. Each class can support one or more `types` or `subtypes`.

Expand Down
4 changes: 2 additions & 2 deletions docs/formBuilder/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ Key files / folders:

Each control is represented by a class which inherits from the `control` class defined in `control.js`. A control class may be used by multiple types of controls.

For an example in of how to [**create a new control**](controls), check out the Readme.md in the `control/` directory.
For an example in of how to [**create a new control**](controls.md), check out the Readme.md in the `control/` directory.

For an example in of how to [**create a new control plugin**](control-plugins), check out the Readme.md in the `control/` directory.
For an example in of how to [**create a new control plugin**](control-plugins.md), check out the Readme.md in the `control/` directory.

The parent class defined in `control.js` has two types of methods:
* object level methods which are used to manipulate and create an instance of that control on a form
Expand Down

0 comments on commit fa6b69f

Please sign in to comment.