// side_dotnav_v01
$(function () {
$('.hp_tooltip').tooltip({
placement: 'left'
});
$('body').scrollspy({
target: '#side_dotnav',
offset: 150
});
// ANIMACAO SKYPESCROLL BOOTSTRAP
$("#side_dotnav ul li a, .metapo_icon").on('click', function(e) {
// prevent default anchor click behavior
e.preventDefault();
// store hash
var hash = this.hash;
// animate
$('html, body').animate({
scrollTop: $(hash).offset().top - 60 // 섹션 상단 여백 높이조절
}, 600, function(){
// when done, add hash to url
// (default click behaviour)
//window.location.hash = hash;
});
});
});