Use Unicode point for layout hamburger button (fixes #1859)

This commit is contained in:
Surma 2015-12-04 15:29:14 +00:00
parent 061cd4e903
commit 04beffae21

View File

@ -44,7 +44,7 @@
MAX_WIDTH: '(max-width: 1024px)',
TAB_SCROLL_PIXELS: 100,
MENU_ICON: 'menu',
MENU_ICON: '',
CHEVRON_LEFT: 'chevron_left',
CHEVRON_RIGHT: 'chevron_right'
};
@ -303,7 +303,7 @@
var drawerButtonIcon = document.createElement('i');
drawerButtonIcon.classList.add(this.CssClasses_.ICON);
drawerButtonIcon.textContent = this.Constant_.MENU_ICON;
drawerButtonIcon.innerHTML = this.Constant_.MENU_ICON;
drawerButton.appendChild(drawerButtonIcon);
}