We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1075f48 commit 9519eb7Copy full SHA for 9519eb7
src/main/webapp/cdn/editor.js
@@ -290,7 +290,9 @@ function uploadHandler(files) {
290
uploadedXML = xmlString.substring(xmlString.indexOf("<block"), (xmlString.length - 29));
291
var computedChecksum = hashCode(uploadedXML).toString();
292
computedChecksum = '000000000000'.substring(computedChecksum.length, 12) + computedChecksum;
293
-
+
294
+ alert("uploaded = " + uploadedChecksum + "\ncomputed = " + computedChecksum);
295
296
if(computedChecksum === uploadedChecksum) xmlValid = true;
297
298
if(xmlValid) {
0 commit comments