Files
App-Installer-For-Windows-8…/shared/html/settings/appinstaller/items.js
2025-11-29 18:19:08 +08:00

25 lines
643 B
JavaScript

(function(global) {
"use strict";
function getPage(page, display) {
return {
page: page,
title: display
};
}
var pages = {
general: getPage("appinstaller/general.html", "General"),
theme: getPage("appinstaller/theme.html", "Theme"),
update: getPage("update.html", "Update")
};
Object.defineProperty(global, "pages", {
get: function() {
return pages;
}
});
Object.defineProperty(global, "guidePage", {
get: function() {
return getPage("appinstaller/guide.html", "Guide");
}
});
})(this);