Files
QuestAppLauncher/QuestAppLauncher.html
tverona1 0d5e94c023 Added "Settings" view & cleaned up app hiding
- Added a settings view
- Hiding an app now dynamically removes the cell from the grid
- Moved the "reset app hiding" button under the settings view
2019-07-20 22:41:56 -07:00

14 lines
195 B
HTML

<!DOCTYPE html>
<html>
<body onload="openApp();">
<h1>Quest App Launcher</h1>
<script>
var openApp = function() {
window.location.replace('questapplauncher://');
};
</script>
</body>
</html>