From 53715bd3fdac7805297b2f91c7d74ef67cd4f8bf Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Tue, 2 May 2023 21:32:00 +0100 Subject: [PATCH] Fix typo Thanks @btheado Co-authored-by: btheado --- core/modules/utils/dom/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/utils/dom/http.js b/core/modules/utils/dom/http.js index d16ea5208..02c670017 100644 --- a/core/modules/utils/dom/http.js +++ b/core/modules/utils/dom/http.js @@ -181,7 +181,7 @@ HttpClientRequest.prototype.send = function(callback) { }, progress: function(lengthComputable,loaded,total) { if(lengthComputable) { - setBinding(bindProgress,"" + Math.floor((loaded/total) * 100)) + setBinding(self.bindProgress,"" + Math.floor((loaded/total) * 100)) } self.wiki.invokeActionString(self.progressActions,undefined,{ lengthComputable: lengthComputable ? "yes" : "no",