This commit is contained in:
unki11 2023-08-30 17:48:27 +09:00
Родитель ed54ddbcb3 310b09b70f
Коммит b692c592d4
1 изменённых файлов: 2 добавлений и 7 удалений

Просмотреть файл

@ -3,13 +3,8 @@ $('#mysidebar').height($(".nav").height());
$( document ).ready(function() {
//this script says, if the height of the viewport is greater than 800px, then insert affix class, which makes the nav bar float in a fixed
// position as your scroll. if you have a lot of nav items, this height may not work for you.
var h = $(window).height();
//console.log (h);
if (h > 800) {
$( "#mysidebar" ).attr("class", "nav affix");
}
$( "#mysidebar" ).attr("class", "nav affix");
// activate tooltips. although this is a bootstrap js function, it must be activated this way in your theme.
$('[data-toggle="tooltip"]').tooltip({
placement : 'top'