$(document).ready(function() { $('#favorite').on('click', function(e) { var bookmarkURL = window.location.href; var bookmarkTitle = document.title; var triggerDefault = false; if (window.sidebar && window.sidebar.addPanel) { // Firefox version < 23 window.sidebar.addPanel(bookmarkTitle, bookmarkURL, ''); } else if ((window.sidebar && (navigator.userAgent.toLowerCase().indexOf('firefox') > -1)) || (window.opera && window.print)) { // Firefox version >= 23 and Opera Hotlist var $this = $(this); $this.attr('href', bookmarkURL); $this.attr('title', bookmarkTitle); $this.attr('rel', 'sidebar'); $this.off(e); triggerDefault = true; } else if (window.external && ('AddFavorite' in window.external)) { // IE Favorite window.external.AddFavorite(bookmarkURL, bookmarkTitle); } else { // WebKit - Safari/Chrome alert((navigator.userAgent.toLowerCase().indexOf('mac') != -1 ? 'Cmd' : 'Ctrl') + '+D 키를 눌러 즐겨찾기에 등록하실 수 있습니다.'); } return triggerDefault; }); // Tooltip $('body').tooltip({ selector: "[data-toggle='tooltip']" }); // Mobile Menu $('#mobile_nav').sly({ horizontal: 1, itemNav: 'centered', //basic smart: 1, mouseDragging: 1, touchDragging: 1, releaseSwing: 1, startAt: menu_startAt, speed: 300, elasticBounds: 1, dragHandle: 1, dynamicHandle: 1 }); if(menu_sub) { $('#mobile_nav_sub').sly({ horizontal: 1, itemNav: 'centered', //basic smart: 1, mouseDragging: 1, touchDragging: 1, releaseSwing: 1, startAt: menu_subAt, speed: 300, elasticBounds: 1, dragHandle: 1, dynamicHandle: 1 }); } $(window).resize(function(e) { $('#mobile_nav').sly('reload'); if(menu_sub) { $('#mobile_nav_sub').sly('reload'); } }); // Top & Bottom Button $(window).scroll(function(){ if ($(this).scrollTop() > 250) { $('#go-btn').fadeIn(); } else { $('#go-btn').fadeOut(); } }); $('.go-top').on('click', function () { $('html, body').animate({ scrollTop: '0px' }, 500); return false; }); $('.go-bottom').on('click', function () { $('html, body').animate({ scrollTop: $(document).height() }, 500); return false; }); });