1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00
anytype-ts/dist/js/run.js
2024-10-04 15:15:34 +02:00

10 lines
No EOL
272 B
JavaScript

const s = document.createElement('script');
s.src = './js/main.js?' + Math.random();
s.type = 'text/javascript';
s.onerror = function() {
console.error('Failed to load main.js');
window.setTimeout(() => window.location.reload(), 1000);
};
document.body.appendChild(s);