Capitalize acronyms

This commit is contained in:
Martynas Bagdonas 2021-02-16 11:10:20 +02:00 committed by Dan Stillman
parent 1a4b2e8c7d
commit 8d87eeae35
4 changed files with 36 additions and 36 deletions

View file

@ -101,12 +101,12 @@ window.addEventListener('message', async (event) => {
parent.postMessage({ action: 'renderedAnnotation', data: { annotation } }, parent.origin, [annotation.image]);
}
);
parent.postMessage({ responseId: message.id, data: num }, parent.origin);
parent.postMessage({ responseID: message.id, data: num }, parent.origin);
}
catch (e) {
console.log(e);
parent.postMessage({
responseId: message.id,
responseID: message.id,
error: errObject(e)
}, parent.origin);
}