comment unused code for now

This commit is contained in:
GotPPay
2018-08-18 22:06:18 +02:00
parent 62c14fe1dc
commit b54512b187

View File

@@ -45,13 +45,14 @@ class HtmlClient {
uploadFile(file, configParams = null) {
let formData = new FormData();
formData.append('file', file, file.name);
/*
if(configParams) {
/*
Object.keys(configParams.data).forEach((paramKey) => {
formData.append(paramKey, configParams.data[paramKey]);
});
*/
}
}*/
configParams.data = formData;
const params = Object.assign({}, uploadParams(), configParams);