Skip to content

Commit d32cb71

Browse files
authored
Merge pull request #1680 from processing/bug/non-english-names
[#1620] Remove commented out code
2 parents 1502849 + f5f49bb commit d32cb71

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Diff for: client/modules/IDE/actions/uploader.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,12 @@ export function dropzoneCompleteCallback(file) {
101101
url: `${s3BucketHttps}${file.postData.key}`,
102102
originalFilename: file.name
103103
};
104-
// console.log(json, JSON.stringify(json), JSON.stringify(json).replace('"', '\\"'));
104+
105105
let jsonStr = JSON.stringify(json);
106-
// console.log(json, jsonStr, jsonStr.replace('"', '\\"'));
107106

108107
// convert the json string to binary data so that btoa can encode it
109108
jsonStr = toBinary(jsonStr);
110109
inputHidden += `${window.btoa(jsonStr)}" />`;
111-
// document.getElementById('uploader').appendChild(inputHidden);
112110
document.getElementById('uploader').innerHTML += inputHidden;
113111

114112
const formParams = {

0 commit comments

Comments
 (0)