Make top app bar 'short'

This is a different type of Material Design top app bar, which gets 
smaller on scroll
This commit is contained in:
Matthew Grove
2018-11-19 21:00:23 +00:00
parent 4df4919627
commit e93647e4be
3 changed files with 86 additions and 6 deletions

View File

@@ -8,7 +8,8 @@ $(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'));
setScrollTarget(document.getElementById('main-content'), mdc_top_app_bar);
mdc_top_app_bar.listen('MDCTopAppBar:nav', () => {
drawer.open = !drawer.open;
});