Update Shell

This commit is contained in:
Bruce
2025-11-21 12:55:08 +08:00
parent 1674f2c35b
commit ae3771bfdb
33 changed files with 972 additions and 78 deletions

11
shared/html/js/init.js Normal file
View File

@@ -0,0 +1,11 @@
(function(global) {
"use strict";
function ready(e) {
function nextstep() {
Resources.processAll();
}
WinJS.UI.processAll().done(nextstep);
}
OnLoad.add(ready);
})(this);