Skip to content

Commit

Permalink
fix(drawer): Update menu icon to be anchor element (#2372)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamernest authored Mar 9, 2018
1 parent 537ae00 commit 1065a74
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion demos/drawer/persistent-drawer.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
<header class="mdc-toolbar mdc-elevation--z4">
<div class="mdc-toolbar__row">
<section class="mdc-toolbar__section mdc-toolbar__section--align-start">
<button class="demo-menu material-icons mdc-toolbar__menu-icon">menu</button>
<a href="#" class="demo-menu material-icons mdc-toolbar__menu-icon">menu</a>
<span class="mdc-toolbar__title catalog-title">Persistent Drawer</span>
</section>
</div>
Expand Down Expand Up @@ -142,6 +142,7 @@ <h1 class="mdc-typography--display1">Persistent Drawer</h1>
</main>

<script src="/assets/material-components-web.js" async></script>
<script src="/assets/common.js" async></script>
<script>
demoReady(function() {
var drawerEl = document.querySelector('.mdc-drawer');
Expand Down
3 changes: 2 additions & 1 deletion demos/drawer/temporary-drawer.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<div class="mdc-toolbar mdc-toolbar--fixed">
<div class="mdc-toolbar__row">
<section class="mdc-toolbar__section mdc-toolbar__section--align-start">
<button class="demo-menu material-icons mdc-toolbar__menu-icon">menu</button>
<a href="#" class="demo-menu material-icons mdc-toolbar__menu-icon">menu</a>
<span class="mdc-toolbar__title catalog-title">Temporary Drawer</span>
</section>
</div>
Expand Down Expand Up @@ -131,6 +131,7 @@ <h1 class="mdc-typography--display1">Temporary Drawer</h1>
</main>

<script src="/assets/material-components-web.js" async></script>
<script src="/assets/common.js" async></script>
<script>
demoReady(function() {
var drawerEl = document.querySelector('.mdc-drawer');
Expand Down

0 comments on commit 1065a74

Please sign in to comment.