mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-17 21:24:48 +10:00
Update Settings Page.
This commit is contained in:
16
shared/html/settings/items.js
Normal file
16
shared/html/settings/items.js
Normal file
@@ -0,0 +1,16 @@
|
||||
(function(global) {
|
||||
"use strict";
|
||||
|
||||
function getSettingsItem(page, displayName) {
|
||||
return {
|
||||
page: page,
|
||||
displayName: displayName
|
||||
};
|
||||
}
|
||||
var settingItems = {
|
||||
appinstaller: getSettingsItem("appinstaller.html", "App Installer")
|
||||
};
|
||||
Object.defineProperty(global, "settingPages", {
|
||||
get: function() { return settingItems; }
|
||||
});
|
||||
})(this);
|
||||
Reference in New Issue
Block a user