From 1313484ebee9ee2badb715169e8b7a8fa771ae63 Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Fri, 12 Jul 2019 11:14:53 +0200 Subject: [PATCH] :lipstick: setup : update progress bar if error occurs --- setup/setup.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup/setup.js b/setup/setup.js index 88a7cba8f..77b1f14bb 100644 --- a/setup/setup.js +++ b/setup/setup.js @@ -8,6 +8,9 @@ function WizardAsyncAction(sActionCode, oParams, OnErrorFunction) var ErrorFn = OnErrorFunction; $(document).ajaxError(function(event, request, settings) { + // update progressbar + // not calling a dedicated plugin method as it is overdated and will be replaced soon + $("#progress .progress").css("background-image", "none"); $('#async_action').html('
'+request.responseText+'
').show(); if (ErrorFn) {