mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-13 20:28:33 +10:00
12 lines
282 B
JavaScript
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); |