Skip to content

Commit d45c355

Browse files
committed
Document the 'backdrop' option.
1 parent 4c521b1 commit d45c355

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,15 @@ In your app.component.html, simply add:
8080

8181
## Customizing the spinner
8282

83-
You can customize the **background-color**, the **spinner type**, the **debounce delay** (ie. after how many milliseconds the spinner will be visible, if needed), the **minimum duration** (ie. how many milliseconds should the spinner be visible at least), the **extra duration** (ie. how many extra milliseconds should the spinner be visible):
83+
You can customize the **background-color**, the **spinner type**, the spinner **backdrop** (visible by default) the **debounce delay** (ie. after how many milliseconds the spinner will be visible, if needed), the **minimum duration** (ie. how many milliseconds should the spinner be visible at least), the **extra duration** (ie. how many extra milliseconds should the spinner be visible):
8484
```xml
8585
<ng-http-loader
8686
[backgroundColor]="'#ff0000'"
8787
[spinner]="spinkit.skWave"
8888
[debounceDelay]="100"
8989
[minDuration]="300"
90-
[extraDuration]="300">
90+
[extraDuration]="300"
91+
[backdrop]="false">
9192
</ng-http-loader>
9293
```
9394

0 commit comments

Comments
 (0)