We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First of all thanks for the great work, I don't have any issues with it.
I would like to suggest a small feature: If the start() can take a second optional string parameter loaderMessage which can be used within the loader
start()
loaderMessage
What I'm thinking of is this.loader.start('fullPageLoader', 'Loading X Please wait this might take few minutes');
this.loader.start('fullPageLoader', 'Loading X Please wait this might take few minutes');
then <ngx-smart-loader identifier="fullPageLoader"> <div class="oLoader fullOverLay"> <div class="spinSpacer"></div> <div id="nb-global-spinner" class="LoaderIcon"> </div> <div class="loaderTxt">{{loaderMessage}}</div> </div> </ngx-smart-loader>
<ngx-smart-loader identifier="fullPageLoader"> <div class="oLoader fullOverLay"> <div class="spinSpacer"></div> <div id="nb-global-spinner" class="LoaderIcon"> </div> <div class="loaderTxt">{{loaderMessage}}</div> </div> </ngx-smart-loader>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
First of all thanks for the great work, I don't have any issues with it.
I would like to suggest a small feature:
If the
start()
can take a second optional string parameterloaderMessage
which can be used within the loaderWhat I'm thinking of is
this.loader.start('fullPageLoader', 'Loading X Please wait this might take few minutes');
then
<ngx-smart-loader identifier="fullPageLoader"> <div class="oLoader fullOverLay"> <div class="spinSpacer"></div> <div id="nb-global-spinner" class="LoaderIcon"> </div> <div class="loaderTxt">{{loaderMessage}}</div> </div> </ngx-smart-loader>
The text was updated successfully, but these errors were encountered: