We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5618e3 commit 79e8229Copy full SHA for 79e8229
src/HolyProgress.ts
@@ -131,7 +131,10 @@ export class HolyProgress {
131
this.removeBar();
132
next();
133
}, speed);
134
- this.removeSpinner();
+
135
+ if (this.settings.showSpinner === true) {
136
+ this.removeSpinner();
137
+ }
138
139
} else {
140
setTimeout(next, speed);
@@ -189,7 +192,10 @@ export class HolyProgress {
189
192
}
190
193
191
194
this.startTrickle();
- this.createSpinner();
195
196
197
+ this.createSpinner();
198
199
200
return this;
201
};
0 commit comments