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