Files
qbtmud/Lantean.QBTMudBlade/wwwroot/js/interop.js
2024-04-26 19:45:10 +01:00

17 lines
407 B
JavaScript

const qbt = {};
qbt.triggerFileDownload = (url, fileName) => {
const anchorElement = document.createElement('a');
anchorElement.href = url;
anchorElement.download = fileName ?? '';
anchorElement.click();
anchorElement.remove();
}
qbt.getBoundingClientRect = (id) => {
const element = document.getElementById(id);
return element.getBoundingClientRect();
}
window.qbt = qbt;