diff --git a/android/android.js b/android/android.js index 61750953..ad6c98b1 100644 --- a/android/android.js +++ b/android/android.js @@ -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` -
- -
-
- ${state.cache(Header, 'header').render()} ${main(state, emit)}
-
- `;
-
+ /*
+ 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`
+
+ `;
+ */
+ return html`
+
+ ${state.cache(Header, 'header').render()} ${main(state, emit)}
+
+ `;
};
}
(async function start() {