Napster2210 / ngx-spinner

A library for loading spinner for Angular 4 - 17.
https://napster2210.github.io/ngx-spinner/
MIT License
823 stars 140 forks source link

How to use fullscreen false in HTML? #199

Closed rakeshbaral92 closed 2 years ago

rakeshbaral92 commented 3 years ago

fullScreen="false" in the HTML shows error.

Seveilith commented 3 years ago

@rakeshbaral92 The fullScreen property expects a boolean — and not a string. In order to pass a boolean value to the property, you need to use the brackets syntax: [fullScreen]="false"

For more information regarding property binding, visit the official Angular docs.

Napster2210 commented 2 years ago

Thank you for answer @Seveilith . Closing this.

rakeshbaral92 commented 2 years ago

Thanks for the reply. I will try and confirm.