Files
App-Installer-For-Windows-8…/shared/html/js/init.js
Bruce a3b3b097b2 Update Shell
Fix Package Store Logo Read
2025-11-26 23:53:09 +08:00

12 lines
282 B
JavaScript

(function(global) {
"use strict";
function ready(e) {
function nextstep() {
Resources.processAll();
}
if (typeof WinJS !== "undefined") WinJS.UI.processAll().done(nextstep);
else nextstep();
}
OnLoad.add(ready);
})(this);