Window resize handling
This commit is contained in:
parent
765ea4a1a1
commit
41907c711f
1 changed files with 7 additions and 2 deletions
|
@ -25,7 +25,12 @@ var i18nStrings = {
|
||||||
top: $('header').height()
|
top: $('header').height()
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
$( window ).resize(function() {
|
||||||
|
$('#nav-wrapper').height($("#nav").height());
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
${headScripts.list()}
|
${headScripts.list()}
|
||||||
|
|
Loading…
Add table
Reference in a new issue