Skip to content

Commit 9519eb7

Browse files
author
Matthew Matz
committed
file fix
1 parent 1075f48 commit 9519eb7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/webapp/cdn/editor.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,9 @@ function uploadHandler(files) {
290290
uploadedXML = xmlString.substring(xmlString.indexOf("<block"), (xmlString.length - 29));
291291
var computedChecksum = hashCode(uploadedXML).toString();
292292
computedChecksum = '000000000000'.substring(computedChecksum.length, 12) + computedChecksum;
293-
293+
294+
alert("uploaded = " + uploadedChecksum + "\ncomputed = " + computedChecksum);
295+
294296
if(computedChecksum === uploadedChecksum) xmlValid = true;
295297

296298
if(xmlValid) {

0 commit comments

Comments
 (0)