New API-driven architecture
This commit is contained in:
9
internal/handler/web/js/install.js
Normal file
9
internal/handler/web/js/install.js
Normal file
@@ -0,0 +1,9 @@
|
||||
function install() {
|
||||
document.title = "安装程序 - MeowBox";
|
||||
const container = document.createElement('div');
|
||||
container.classList.add('container');
|
||||
document.body.appendChild(container);
|
||||
}
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
install();
|
||||
});
|
||||
Reference in New Issue
Block a user