mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-11 17:57:19 +10:00
25 lines
643 B
JavaScript
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); |