2019-09-28 18:44:54 +00:00
|
|
|
|
$(".img-src").width($("#main-content").width());
|
2019-09-28 19:09:39 +00:00
|
|
|
|
if ($("#top-container").width() > 768) {
|
|
|
|
|
$("#nav-link-container").height($("#nav-link-list").height());
|
|
|
|
|
}
|
|
|
|
|
$(window).resize(function () {
|
|
|
|
|
$(".img-src").width($("#main-content").width());
|
|
|
|
|
if ($("#top-container").width() > 768) {
|
|
|
|
|
$("#nav-link-container").height($("#nav-link-list").height());
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$("#nav-link-container").css('height', '');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2019-09-28 18:00:44 +00:00
|
|
|
|
$("#motto").fitText();
|
|
|
|
|
$("[rel='tooltip']").tooltip();
|