Edit top app bar

Begin to make it into a short app bar
This commit is contained in:
Matthew Grove
2018-12-08 21:26:01 +00:00
parent 98a0f84ec7
commit bcf03a2e45
3 changed files with 2 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ $(document).ready(function() {
$(".mdc-top-app-bar").load("/page-inserts/top-app-bar.html", function(){
// initiate MDC top app bar
const mdc_top_app_bar = new mdc.topAppBar.MDCTopAppBar.attachTo(document.querySelector('.mdc-top-app-bar'));
mdc_top_app_bar.setScrollTarget(document.getElementById('main-content'));
// mdc_top_app_bar.setScrollTarget(document.getElementById('main-content'));
mdc_top_app_bar.listen('MDCTopAppBar:nav', () => {
drawer.open = !drawer.open;
});