fix(nodejs): disable file type buttons after selection

This commit is contained in:
Serik Ibragimov
2024-03-01 15:25:14 +05:00
parent 690ab5471b
commit 999e147539

View File

@ -227,7 +227,7 @@ if (typeof jQuery != "undefined") {
const currentElement = jq(this);
var fileType = currentElement.attr("data");
var filePass = jq("#hiddenFileName").attr("placeholder");
jq("div[id='forceConvert']").addClass("disable, pale");
jq("div[id='forceConvert']").addClass(["disable", "pale"]);
currentElement.removeClass("pale");
checkConvert(filePass, fileType);
});