init.js 345 B

1234567891011121314
  1. $(document).on('click', '[data-toggle="lightbox"]', function(event) {
  2. event.preventDefault();
  3. $(this).ekkoLightbox();
  4. });
  5. $("#nav ul li a[href^='#']").on('click', function(e) {
  6. e.preventDefault();
  7. var hash = this.hash;
  8. $('html, body').animate({
  9. scrollTop: $(hash).offset().top
  10. }, 300, function(){
  11. window.location.hash = hash;
  12. });
  13. });