mirror of
https://github.com/anyproto/anytype-ts.git
synced 2025-06-08 05:57:02 +09:00
10 lines
No EOL
272 B
JavaScript
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); |