Remove iOS theme in favor of plain light/dark themes

This commit is contained in:
Scott Nonnenberg 2018-06-25 16:57:06 -07:00
parent 19cbfae127
commit fc5c52fbdf
16 changed files with 51 additions and 623 deletions

View file

@ -16,12 +16,11 @@
openInbox: 'openInbox',
},
applyTheme: function() {
var theme = storage.get('theme-setting') || 'android';
var theme = storage.get('theme-setting') || 'light';
this.$el
.removeClass('ios')
.removeClass('android-dark')
.removeClass('android')
.addClass(theme);
.removeClass('light-theme')
.removeClass('dark-theme')
.addClass(`${theme}-theme`);
},
applyHideMenu: function() {
var hideMenuBar = storage.get('hide-menu-bar', false);