mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-02-10 18:05:10 +08:00
nodejs: percentage on converting (Fix Bug 69567)
This commit is contained in:
@ -436,7 +436,7 @@ if (typeof jQuery != "undefined") {
|
||||
jq("td[name='convertingTypeButton']").removeClass("disable orange");
|
||||
return;
|
||||
}
|
||||
if(response.step && response.step !==100) {
|
||||
if (response.step != undefined && response.step !== 100) {
|
||||
jq("#convertPercent").text(`${response.step} %`);
|
||||
convertFile();
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user