- 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
14 lines
195 B
HTML
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>
|