uci-hugo-landingpage/static/js/docready.js

22 lines
455 B
JavaScript
Raw Normal View History

function resizeElements() {
navbarSpacer();
2017-03-10 22:59:27 -08:00
heroResize();
tagResize('iframe');
tagResize('.thumb--yt');
typeResize(); // for section content
$('.section__content--modal').perfectScrollbar('update');
};
hljs.initHighlightingOnLoad();
$('.section__content--modal').perfectScrollbar();
// requires jquery
$(document).ready(function () {
resizeElements()
});
// resize elements on change
$(window).resize(function () {
resizeElements()
});