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 8d04297 commit 4a8fdccCopy full SHA for 4a8fdcc
src/js/api.library.js
@@ -75,7 +75,7 @@ api.spinner.progress.setTimeout = function () {
75
// Add an incremental safety margin
76
api.spinner.progress.timeout = Math.ceil(api.spinner.progress.timeout + api.spinner.progress.timeout / 100 * 0.5);
77
78
- app.upload.progress.instance = setTimeout(function () {
+ api.spinner.progress.instance = setTimeout(function () {
79
// Never display 100% as it may need longer than expected to complete
80
var percentage = Math.min(parseInt($(C_API_SELECTOR_SPINNER + " .progress").find("[name=bar]").attr('aria-valuenow')) + 1, 99);
81
$(C_API_SELECTOR_SPINNER + " .progress").show();
0 commit comments