Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 22e3a33

Browse files
author
SamGraber
committed
Documented lazy load.
1 parent fdf02fa commit 22e3a33

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Angular components that can be added to an application.
2626
* [dateTimeStatic]()
2727
* [dialog]()
2828
* [genericContainer]()
29-
* [lazyLoad]()
29+
* [lazyLoad](/source/components/lazyLoad/lazyLoad.md)
3030
* [longClickButton]()
3131
* [messageLog]()
3232
* [multiStepIndicator]()
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Lazy Load
2+
Component for conditionally showing content. With this component, the content will not render until it is first shown. Afterward the initial render it will hide and show using `ng-show`.
3+
4+
### Usage
5+
```
6+
<rl-lazy-load show=""> ... </rl-lazy-load>
7+
```
8+
### Options
9+
10+
#### `show`
11+
12+
This expression determines whether the content should show or hide.

0 commit comments

Comments
 (0)