menu: remove logo

It doesn't provide any functionality, and it uses up valuable screen space
on a phone screen.
This commit is contained in:
Oliver Gerlich 2018-07-19 22:29:57 +02:00
parent bd7cef3f00
commit 3a18da51c8
1 changed files with 0 additions and 3 deletions

View File

@ -15,9 +15,6 @@ export class MenuView extends View {
const menuContainer = domlib.newAt(this.el, 'nav');
this.menuList = domlib.newAt(menuContainer, 'ul');
const logo = domlib.newAt(this.menuList, 'li', {'class':'logo'});
domlib.newAt(logo, 'img', {'src':'/img/logo.svg'});
const aList = domlib.newAt(this.menuList, 'li', {'class':'item-1'});
domlib.newAt(aList, 'a', {'href':'#/list'}, 'List');