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 13e3fb4 commit d07ed2aCopy full SHA for d07ed2a
src/main/js/pluginSetupWizardGui.js
@@ -610,11 +610,14 @@ var createPluginSetupWizard = function (appendTarget) {
610
}
611
612
// update progress bar
613
- $(".progress-bar").css({ width: (100.0 * complete) / total + "%" });
+ document.querySelectorAll(".progress-bar").forEach(bar => {
614
+ bar.style.width = `${(100.0 * complete) / total}%`;
615
+ });
616
617
// update details
- var $txt = $(".install-text");
- $txt.children().remove();
618
+ document.querySelectorAll(".install-text").forEach(txt => {
619
+ txt.replaceChildren();
620
621
622
for (i = 0; i < jobs.length; i++) {
623
j = jobs[i];
0 commit comments