vueless 0.0.221 → 0.0.222
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/ui.loader-top/index.vue
CHANGED
|
@@ -201,15 +201,17 @@ function increase(amount) {
|
|
|
201
201
|
|
|
202
202
|
if (currentProgress < 100 && typeof amount !== "number") {
|
|
203
203
|
if (currentProgress >= 0 && currentProgress < 25) {
|
|
204
|
-
amount =
|
|
204
|
+
amount = 4;
|
|
205
205
|
} else if (currentProgress >= 25 && currentProgress < 50) {
|
|
206
|
-
amount =
|
|
207
|
-
} else if (currentProgress >= 50 && currentProgress <
|
|
208
|
-
amount =
|
|
209
|
-
} else if (currentProgress >=
|
|
206
|
+
amount = 3;
|
|
207
|
+
} else if (currentProgress >= 50 && currentProgress < 75) {
|
|
208
|
+
amount = 2;
|
|
209
|
+
} else if (currentProgress >= 75 && currentProgress < 90) {
|
|
210
|
+
amount = 1;
|
|
211
|
+
} else if (currentProgress >= 90 && currentProgress < 95) {
|
|
210
212
|
amount = 0.5;
|
|
211
213
|
} else {
|
|
212
|
-
amount = 0;
|
|
214
|
+
amount = 0.05;
|
|
213
215
|
}
|
|
214
216
|
}
|
|
215
217
|
|