From 4246857bf7f1bc96e9d3026a432810033c394c71 Mon Sep 17 00:00:00 2001 From: Thomas Horn Sivertsen Date: Thu, 15 Mar 2018 14:01:49 +0100 Subject: [PATCH] Fixed bug --- js/h5p-content-upgrade.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/h5p-content-upgrade.js b/js/h5p-content-upgrade.js index 03f04a0..0afe152 100644 --- a/js/h5p-content-upgrade.js +++ b/js/h5p-content-upgrade.js @@ -306,7 +306,8 @@ self.upgraded[id] = result; // Update progress message - self.throbber.setProgress(Math.round((info.total - self.left + self.current) / (info.total / 100)) + ' %'); + var percentComplete = Math.round((info.total - self.left + self.current) / (info.total / 100)); + self.throbber.setProgress(percentComplete + ' %'); self.trigger('upgraded', { id: id,