You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ If you want to use Angular 5, use versions **``0.4.0``** and above.
32
32
33
33
The latest compatible version with angular 5 is version **``0.9.1``**.
34
34
35
-
Versions above**``0.9.1``** are angular 6 / RxJS 6 compatible only.
35
+
From version**``1.0.0``**, the module is angular 6 / RxJS 6 compatible only.
36
36
37
37
If you experience errors like below, **please double check the version you use.**
38
38
@@ -154,7 +154,6 @@ You can define your own loader component in place of the built-in ones. The need
154
154
155
155
You can find some short examples [here](https://gist.github.com/mpalourdio/2c0bec03d610b24ff49db649fbb69a48) and [here](https://gist.github.com/mpalourdio/e05b4495de2abeeecfcf92d70e4ef93e).
156
156
157
-
158
157
## Requests filtering
159
158
160
159
You can also filter the http requests that shouldn't be caught by the interceptor by providing **an array of regex patterns**:
@@ -166,6 +165,10 @@ You can also filter the http requests that shouldn't be caught by the intercepto
166
165
167
166
You can manually show and hide the spinner component if needed. You must use the ``SpinnerVisibilityService`` for this purpose.
168
167
168
+
Sometimes, when manually showing the spinner, an http request could be performed in background, and when finished, the spinner would automagically disappear.
169
+
170
+
**For this reason, when calling ``SpinnerVisibilityService#show()``, it prevents the http interceptor from being triggered unless you explicitly call ``SpinnerVisibilityService#hide()``.**
0 commit comments