Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(demos): Fix drawer menu icon position in RTL (#1931)
Steps to repro: 1. View the [Persistent Drawer](https://material-components-web.appspot.com/drawer/persistent-drawer.html) and [Temporary Drawer](https://material-components-web.appspot.com/drawer/temporary-drawer.html) demo pages in Edge 2. Open the F12 dev tools 3. Run this snippet in the console to toggle RTL: ```js var el = document.documentElement; el.dir = el.dir === 'rtl' ? '' : 'rtl'; ``` 4. Observe that the horizontal alignment of the toolbar menu icon is incorrect in RTL mode Below is a screenshot of the bug this PR is fixing. - Left side: IE 11 (correct behavior) - Right side: MS Edge (buggy positioning) ![Screenshot of RTL drawer demo in IE 11 and Edge](https://user-images.githubusercontent.com/409245/34791933-50e44d48-f5fb-11e7-936b-ae3c3a016d85.png)
- Loading branch information