Skip to content

Commit

Permalink
Update docs for Version directive
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcanonieto committed Jun 17, 2020
1 parent 0d96992 commit 28fb5a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/core/directives/version-compatibility.directive.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Enables/disables components based on ACS version in use.
## Basic usage

```html
<button *adf-ecm-version="'6.0.0'">
<button *adf-acs-version="'6.0.0'">
My Action
</button>
```
Expand All @@ -28,21 +28,21 @@ This will allow certain features to be only present under specific versions.

#### Major version
```html
<button *adf-ecm-version="'7'">
<button *adf-acs-version="'7'">
My Action
</button>
```

#### Major and minor version
```html
<button *adf-ecm-version="'6.2'">
<button *adf-acs-version="'6.2'">
My Action
</button>
```

#### Major, minor and patch version
```html
<button *adf-ecm-version="'6.0.1'">
<button *adf-acs-version="'6.0.1'">
My Action
</button>
```
Expand Down

0 comments on commit 28fb5a2

Please sign in to comment.