Files
server-configs/siyuan/data/plugins/siyuan-drawio-plugin/webapp/js/main.js
2026-02-13 22:24:27 +08:00

23 lines
447 B
JavaScript

/**
* Copyright (c) 2020-2025, JGraph Holdings Ltd
* Copyright (c) 2020-2025, draw.io AG
*/
/**
* Main
*/
if (typeof AJS === 'undefined') // conf insists on pulling in this file into batch.js for atlas-debug
{
if (urlParams['dev'] != '1' && typeof document.createElement('canvas').getContext === "function")
{
window.addEventListener('load', function()
{
mxWinLoaded = true;
checkAllLoaded();
});
}
else
{
App.main();
}
}