24
1
Fork 0

Hide the preferences menu for the beta

This commit is contained in:
Donovan Preston 2018-12-18 11:14:22 -05:00
parent 41d0076add
commit 6c4bf8b37a
1 changed files with 21 additions and 17 deletions

View File

@ -25,7 +25,7 @@ import Raven from 'raven-js';
import { setApiUrlPrefix } from '../app/api';
import metrics from '../app/metrics';
import assets from '../common/assets';
//import assets from '../common/assets';
import Header from '../app/ui/header';
import storage from '../app/storage';
import controller from '../app/controller';
@ -50,26 +50,30 @@ app.use(intents);
function body(main) {
return function(state, emit) {
return html`
<body
class="flex flex-col items-center font-sans bg-blue-lightest h-screen"
>
<a
id="hamburger"
class="absolute pin-t pin-r z-50"
href="#"
onclick="${clickPreferences}"
>
<img src="${assets.get('preferences.png')}" />
</a>
${state.cache(Header, 'header').render()} ${main(state, emit)}
</body>
`;
/*
Disable the preferences menu for now since it is ugly and isn't
relevant to the beta
function clickPreferences(event) {
event.preventDefault();
emit('pushState', '/preferences');
}
const menu = html`<a
id="hamburger"
class="absolute pin-t pin-r z-50"
href="#"
onclick="${clickPreferences}"
>
<img src="${assets.get('preferences.png')}" />
</a>`;
*/
return html`
<body
class="flex flex-col items-center font-sans bg-blue-lightest h-screen"
>
${state.cache(Header, 'header').render()} ${main(state, emit)}
</body>
`;
};
}
(async function start() {